网站地图    收藏   

主页 > php专栏 > php上传下载 >

php中header()强制文件下载实现代码 - php上传下载

来源:自学PHP网    时间:2014-11-28 00:00 作者: 阅读:

[导读] functiondownloadFile($file){$file_name=$file;$mime= 39;application force-download 39;;header( 39;Pragma:public 39;); requiredheader( 39;Expires:0 39;); nocacheheader( 39;Cach...

php中header()强制文件下载实现代码

  1. function downloadFile($file){  
  2. $file_name = $file;  
  3. $mime = 'application/force-download';  
  4. header('Pragma: public'); // required  
  5. header('Expires: 0'); // no cache  
  6. header('Cache-Control: must-revalidate, post-check=0, pre-check=0');  
  7. header('Cache-Control: private',false);  
  8. header('Content-Type: '.$mime);  
  9. header('Content-Disposition: attachment; filename="'.basename($file_name).'"');  
  10. header('Content-Transfer-Encoding: binary');  
  11. header('Connection: close');  
  12. readfile($file_name); // push it out  
  13. exit();  
  14. }  

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论