0

对于一个项目,我想读取上传存档(zip 文件)中的特定文件。该文件始终具有相同的名称/相对路径。

是否可以仅提取此文件,还是应该提取整个存档?

谢谢

4

1 回答 1

2
$files = array('/a_path/titi.txt'); //create a list of files to be extracted here

$zip = new ZipArchive;
$res = $zip->open('test_im.zip');
if ($res === TRUE) {
    $zip->extractTo('/my/destination/dir/', $files);
    $zip->close();
    echo 'ok';
} else {
    echo 'failed';
}
于 2013-06-21T08:19:43.103 回答