ziparchive open方法无效

时间:2014-09-16 10:42:38

标签: php zip wampserver ziparchive

我正在使用我制作的函数从包含文件的数组创建一个zip文件

function create_zip($files = array(),$destination = '',$overwrite = false) {
//if the zip file already exists and overwrite is false, return false
if(file_exists($destination) && !$overwrite) { return false; }
    //create the archive
    $zip = new ZipArchive();
    if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true)    {
            return false;
    }
    //add the files
    foreach($files as $file) {
            $zip->addFile($file);
    }
    //debug
    echo 'The zip archive contains ',$zip->numFiles,' files with a status of ',$zip->status;

    //close the zip -- done!
    $zip->close();

    //check to make sure the file exists
    return file_exists($destination);
}

但当我使用适当的文件数组时 - 目标路径是可写的,因为我在创建zip之前在同一路径中创建目录并且它有效 - 它返回 ' zip存档包含4个状态为0' 当我在提交过程中检查文件夹时,我看到一个名为fileName.zip.0156a的文件,并在几秒钟内被删除 当我试图得到$ zip-> gt的响应时,打开它返回1

0 个答案:

没有答案