php下载excel无法打开的解决方法
程序员文章站
2023-12-02 16:50:10
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>';
}
推荐阅读
-
360浏览器下载资源时无法使用迅雷下载的解决方法
-
Win10定位功能打不开怎么办?Win10定位功能无法打开的解决方法
-
php下载excel无法打开的解决方法
-
JSP页面IE无法打开Internet 站点…… 已终止操作 的解决方法
-
photoshop cc无法打开及闪退的解决方法
-
Outlook 无法打开附件的解决方法
-
用visual studio 2010 打开winform程序时无法运行的解决方法
-
PHP生成验证码时“图像因其本身有错无法显示”的解决方法
-
用visual studio 2010 打开winform程序时无法运行的解决方法
-
php的webservice的wsdl的XML无法显示问题的解决方法