2016-12-05 58 views
0

我正在嘗試將圖像添加到zip文件並強制使用標題下載它。下面是我現在使用的代碼片段。在使用Php zip下載代碼時遇到問題

$zip = new ZipArchive(); 
$zip_name = 'design_images_'.time() .".zip"; 
if($zip->open($zip_name, ZIPARCHIVE::CREATE)!==TRUE){ 
    $error .= "* Sorry ZIP creation failed at this time"; 
} 
    $i = 0; 
foreach($valid_files as $file){ 
    $image_name = 'design_image_' . $i; 
    $zip->addFile($file, $image_name); 
    $i++; 
} 
$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.'"'); 
    readfile($zip_name); 

} 

當我嘗試打開zip文件時出現錯誤:歸檔文件已損壞。

+0

你肯定在'zip-> open'有沒有錯誤? 'readfile'後面有輸出嗎? –

+0

是的,壓縮包以準確的大小成功下載,但無法解壓縮。當我雙擊壓縮文件時,我可以看到它裏面的所有圖像都有適當的尺寸。但同樣無法打開或提取任何一個。 –

回答

0

服務嘗試下載之前清理輸出緩衝:

if(file_exists($zip_name)){ 

    // Clean the output buffer. 
    while (ob_get_level()) { 
    ob_end_clean(); 
    } 

    // 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.'"'); 
    readfile($zip_name); 

}