用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

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

时间:2015-01-23  来源:西部数据  作者:西部数据
  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. }  
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门