无法使用 zip 存档在 php 中创建有效的 zip 文件?
unable to create a valid zip file in php using zip archive?
我正在使用 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 文件,但相反,一旦开始下载,它就会继续下载,没有任何最终大小或最大大小。在某些情况下,即使文件已下载,当我们尝试解压缩文件时,它也会给出错误文件无效。无法找出问题,非常感谢任何帮助。
主要原因是同一个文件夹中已经存在一个巨大的 zip 文件,其 zip 文件名与我用来创建新 zip 的文件相同开始下载,正如 Marcelo 在评论中所建议的那样,未提及大小,因此下载不成功,但是当在声明为二进制的编码中提到大小并更改 zip 名称或删除以前的 zip 文件时,一切正常。
我正在使用 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 文件,但相反,一旦开始下载,它就会继续下载,没有任何最终大小或最大大小。在某些情况下,即使文件已下载,当我们尝试解压缩文件时,它也会给出错误文件无效。无法找出问题,非常感谢任何帮助。
主要原因是同一个文件夹中已经存在一个巨大的 zip 文件,其 zip 文件名与我用来创建新 zip 的文件相同开始下载,正如 Marcelo 在评论中所建议的那样,未提及大小,因此下载不成功,但是当在声明为二进制的编码中提到大小并更改 zip 名称或删除以前的 zip 文件时,一切正常。