N不支持多磁盘zip存档

时间:2018-05-03 11:21:53

标签: php laravel

我想使用php zipArchive将文件下载到zip,但我收到此错误 'N不支持多磁盘zip存档'。

1 个答案:

答案 0 :(得分:0)

$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();


}