我正在使用 ziparchive 为某些文件创建 zip,然后需要使用以下代码下载文件。
if(count($valid_files > 0)){
$zip = new ZipArchive();
$zip_name = "pixels.zip";
if($zip->open($zip_name, ZIPARCHIVE::CREATE)!==TRUE){
$error .= "* Sorry ZIP creation failed at this time";
}
foreach($valid_files as $file){
$zip->addFile($file);
}
$zip->close();
if(file_exists($zip_name)){
// force to download the zip
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false);
header('Content-type: application/zip');
header('Content-Disposition: attachment; filename="'.$zip_name.'"');
ob_clean();
flush();
readfile($zip_name);
//remove zip file from temp path
unlink($zip_name);
}
} else {
echo "No valid files to zip";
exit;
}
假设$valid_files
包含一个数组,其中每个元素作为完整的文件路径。上面的代码预计会创建一个包含文件的 zip 文件,但相反,一旦启动下载,它就会继续下载,没有任何完成大小或最大大小。在某些情况下,即使文件已下载,当我们尝试解压缩文件时,它也会显示错误文件为无效文件。非常感谢无法找出问题的任何帮助。