我想我可以方便地使用 glob 模式列出 zip 文件中的任何内容。但这似乎不起作用。有办法吗?
<?php
$contents = glob('zip://path/to/archive.zip#subdir/*.ext');
var_dump($contents);
zip:// 流包装器似乎根本不返回目录内容。
scandir('zip://path/to/archive.zip#subdir/'); // array(0){}
该文档没有太大帮助: https ://www.php.net/manual/en/wrappers.compression.php