php下載檔案無法開啟的解決辦法:1、在下載的過程中取消輸出任何非檔案資訊;2、將輸出的檔案格式和字尾名儲存一致。
推薦:《》
php下載excel檔案,
1、在下載的過程中不要 輸出任何非檔案資訊,比如 echo log資訊。 否則下載後的檔案無法開啟,提示格式錯誤或者檔案被破壞。
2、 輸出的excel格式一定要和字尾名儲存一直,否也會提示格式錯誤或者檔案被破壞
程式碼如下:
if (file_exists(CACHE_PATH . $file_name)){ //$this->logger->error('file realpath:'.realpath(CACHE_PATH . $file_name)); header( 'Pragma: public' ); header( 'Expires: 0' ); header( 'Content-Encoding: none' ); header( 'Cache-Control: must-revalidate, post-check=0, pre-check=0' ); header( 'Cache-Control: public' ); header( 'Content-Type: application/vnd.ms-excel'); header( 'Content-Description: File Transfer' ); header( 'Content-Disposition: attachment; filename=' . $file_name ); header( 'Content-Transfer-Encoding: binary' ); header( 'Content-Length: ' . filesize ( CACHE_PATH . $file_name ) ); readfile ( CACHE_PATH . $file_name ); } else { $this->logger->error('export model :'.$id.' 錯誤:未生產檔案'); echo '<script>alert(\'export error, file not exists!\')</script>'; }
以上就是php下載檔案無法開啟怎麼辦的詳細內容,更多請關注TW511.COM其它相關文章!