ZipArchive失败了

时间:2014-04-23 10:34:26

标签: php html mysql css

我将使用PHP类创建一个Zip存档。但它仍然无法正常工作。 它没有失败,响应是1.他没有创建Zip文件。

$zip = new ZipArchive;
$res = $zip->open('qr_img/'.'ab387bas.zip'.'', ZipArchive::CREATE);
if ($res === TRUE) {
    $zip->addFile($file, 'screen.png');
    $zip->close();
}

知道每个人的答案吗?

1 个答案:

答案 0 :(得分:2)

$file_names是您要在zip中添加的文件数组。

 function zipFile($file_names,$archive_file_name)
{
    $zip = new ZipArchive();
    //create the file and throw the error if unsuccessful
    if ($zip->open($archive_file_name, ZIPARCHIVE::OVERWRITE )!==TRUE) {

    }

    //add each files of $file_name array to archive
    foreach($file_names as $files)
    {
    //  $zip->addFile($files,$files);
        $zip->addFromString(basename($files),  file_get_contents($files));
    }
    $zip->close();


}