php下载excel无法打开的解决方法
程序员文章站
2023-11-04 22:49:22
php下载excel文件,1、在下载的过程中不要 输出任何非文件信息,比如 echo log信息。 否则下载后的文件无法打开,提示格式错误或者文件被破坏。2、 输出的exc...
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>';
}
推荐阅读
-
Win10定位功能打不开怎么办?Win10定位功能无法打开的解决方法
-
win8下XAMPP中Apache模块无效(apache无法打开)的解决方法
-
关于Appserv无法打开localhost问题的解决方法
-
Win2008中SqlServer2008 无法打开错误日志文件导致无法启动的解决方法
-
火狐浏览器无法使用迅雷下载链接的解决方法
-
php下载excel无法打开的解决方法
-
JSP页面IE无法打开Internet 站点…… 已终止操作 的解决方法
-
iPad下载不了App怎么办 iPad无法下载应用的解决方法
-
使用记事本打开Hosts文件修改后无法保存的解决方法
-
使用php实现下载生成某链接快捷方式的解决方法