当前位置:首页 > PHP教程 > php文件操作 > 列表

php文件下载后无法打开的处理方案及代码

发布:smiling 来源: PHP粉丝网  添加日期:2022-05-09 10:50:46 浏览: 评论:0 

在本篇内容里小编给大家整理的是一篇关于php文件下载后无法打开的处理方案及代码内容,有兴趣的朋友们可以学习下。

PHP下载图片后文件打开显示损坏问题

用php写个图片下载方法,测试发现下载的图片大小都没问题,但是无法打开文件。

解决方法如下:

首先打开文件下载代码,增加:

ob_clean();

flush();

完整下载图片代码:

  1. if(isset($_GET['action'])&&$_GET['action'] == 'download'
  2. if($_GET['file']) 
  3. $fileinfo = pathinfo($_GET['file']); 
  4. header('Content-type: application/x-'.$fileinfo['extension']); 
  5. header('Content-Disposition: attachment; filename=favicon.ico'); 
  6. ob_clean(); 
  7.     flush(); 
  8. readfile($_GET['file']); 
  9. exit(); 

内容扩展:

php下载excel文件,

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

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

代码如下:

  1. if (file_exists(CACHE_PATH . $file_name)){ 
  2.  
  3.             //$this->logger->error('file realpath:'.realpath(CACHE_PATH . $file_name)); 
  4.  
  5.       header( 'Pragma: public' ); 
  6.  
  7.       header( 'Expires: 0' ); 
  8.  
  9.       header( 'Content-Encoding: none' ); 
  10.  
  11.       header( 'Cache-Control: must-revalidate, post-check=0, pre-check=0' ); 
  12.  
  13.       header( 'Cache-Control: public' ); 
  14.  
  15.    header( 'Content-Type: application/vnd.ms-excel'); 
  16.  
  17.       header( 'Content-Description: File Transfer' ); 
  18.  
  19.       header( 'Content-Disposition: attachment; filename=' . $file_name ); 
  20.  
  21.       header( 'Content-Transfer-Encoding: binary' ); 
  22.  
  23.       header( 'Content-Length: ' . filesize ( CACHE_PATH . $file_name ) ); 
  24.  
  25.       readfile ( CACHE_PATH . $file_name ); 
  26.  
  27.   } else { 
  28.  
  29.    $this->logger->error('export model :'.$id.' 错误:未生产文件'); 
  30.  
  31.       echo ''
  32.  
  33.   }

Tags: php文件下载后无法打开

分享到: