我使用函数压缩文件夹,文件(compressed.zip)包含文件夹的所有内容。我测试下载,一切正常。 现在我想在压缩完成后自动下载文件。
这是我用于此的代码:
if(isset($_GET['compress'])) {
// compress folder and sent compressed zip to plugins/sfm/views
Zip($_GET['compress'], "plugins/sfm/views/compressed.zip");
if(file_exists('plugins/sfm/views/compressed.zip')){
// set example variables
$filename = "compressed.zip";
$filepath = "plugins/sfm/views/";
// http headers for zip downloads
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"".$filename."\"");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($filepath.$filename));
ob_end_flush();
@readfile($filepath.$filename);
}
}
像我说的那样;当我通过url去插件/ sfm / views / compressed.zip时,他提取文件夹没有问题,所有内容都在其中提取。
但强制下载给了我一个似乎已损坏的compressed.zip。
当试图用Winrar打开下载时,他说:存档意外结束。并且:存档格式未知或已损坏。 为什么强制下载会给我这个错误? zip文件已正确压缩!
答案 0 :(得分:0)
这似乎解决了这个问题:
//clean all levels of output buffering
while (ob_get_level()) {
ob_end_clean();
}
在@readfile($filepath.$filename);
之前