当前位置:首页 > PHP教程 > php应用 > 列表

php下载excel无法打开的解决方法

发布:smiling 来源: PHP粉丝网  添加日期:2020-08-11 10:48:23 浏览: 评论:0 

php下载excel文件.

1、在下载的过程中不要 输出任何非文件信息,比如 echo log信息。 否则下载后的文件无法打开,提示格式错误或者文件被破坏。

2、 输出的excel格式一定要和后缀名保存一直,否也会提示格式错误或者文件被破坏

  1. if (file_exists(CACHE_PATH . $file_name)){ 
  2.             //$this->logger->error('file realpath:'.realpath(CACHE_PATH . $file_name)); 
  3.       header( 'Pragma: public' ); 
  4.       header( 'Expires: 0' ); 
  5.       header( 'Content-Encoding: none' ); 
  6.       header( 'Cache-Control: must-revalidate, post-check=0, pre-check=0' ); 
  7.       header( 'Cache-Control: public' ); 
  8.    header( 'Content-Type: application/vnd.ms-excel');   
  9.       header( 'Content-Description: File Transfer' ); 
  10.       header( 'Content-Disposition: attachment; filename=' . $file_name ); 
  11.       header( 'Content-Transfer-Encoding: binary' ); 
  12.       header( 'Content-Length: ' . filesize ( CACHE_PATH . $file_name ) ); 
  13.       readfile ( CACHE_PATH . $file_name ); 
  14.   } else { 
  15.    $this->logger->error('export model :'.$id.' 错误:未生产文件'); 
  16.       echo '<script>alert(\'export error, file not exists!\')</script>'
  17.   } 

Tags: php下载excel无法打开

分享到: