Ziparchive extracto函数将第二个参数视为文件夹

时间:2015-02-18 12:32:32

标签: php extract ziparchive

我尝试使用 ziparchive 提取zip文件,这是我的代码:

$path = "/test/admin";
$zip = new ZipArchive;
if ($zip->open("test.zip") === TRUE) {
    $zip->extractTo($path."/", array("index.php"));
    $zip->close();
}

但输出变为/test/admin/index.php/。 该文件成为文件夹。

有人可以帮助我。

0 个答案:

没有答案