Home > Article > Backend Development > What should I do if the php download file cannot be opened?
Solutions to the problem that php downloaded files cannot be opened: 1. Cancel the output of any non-file information during the download process; 2. Save the output file format and suffix name consistent.
Recommended: "PHP Video Tutorial"
php download excel file,
1. Do not output any non-file information during the download process, such as echo log information. Otherwise, the downloaded file cannot be opened, prompting a format error or the file is damaged.
2. The output excel format must be saved with the suffix name, otherwise it will prompt a format error or the file is damaged
The code is as follows:
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>'; }
The above is the detailed content of What should I do if the php download file cannot be opened?. For more information, please follow other related articles on the PHP Chinese website!