PHP - Zip提取失败

时间:2014-05-28 05:58:21

标签: php

提取zip文件时出现此错误。它说文件存在,但我认为不是。因为目录是基于每个上传的php中的uniqid()创建的。

Warning: ZipArchive::extractTo() [<a href='ziparchive.extractto'>ziparchive.extractto</a>]: File exists

我正在做的是上传一个zip文件并将内容提取到另一个目录  这是我的代码

function extract_files($file, $destination) {
$zip = new ZipArchive();
if ($zip->open($file) === TRUE) {
    if (!is_dir($destination)) {
        mkdir($destination);
    }
    if (is_dir($destination)) {
        $zip->extractTo($destination . '/');
        $zip->close();
    }
}

}

0 个答案:

没有答案