1. /**
  2. * @author      default7<default7@zbphp.com>
  3. * @description 演示PHP弹出下载的原理
  4. *
  5. * @param $file_name
  6. */
  7. function downFile($file_name)
  8. {
  9. $file_path = "/tmp/" . $file_name;
  10. $buffer = 102400; //一次返回102400个字节
  11. if (!file_exists($file_path)) {
  12. echo "<script type='text/javascript'> alert('对不起!该文件不存在或已被删除!'); </script>";
  13. return;
  14. }
  15. $fp = fopen($file_path, "r");
  16. $file_size = filesize($file_path);
  17. $file_data = '';
  18. while (!feof($fp)) {
  19. $file_data .= fread($fp, $buffer);
  20. }
  21. fclose($fp);
  22. //Begin writing headers
  23. header("Pragma: public");
  24. header("Expires: 0");
  25. header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
  26. header("Cache-Control: public");
  27. header("Content-Description: File Transfer");
  28. header("Content-type:application/octet-stream;");
  29. header("Accept-Ranges:bytes");
  30. header("Accept-Length:{$file_size}");
  31. header("Content-Disposition:attachment; filename={$file_name}");
  32. header("Content-Transfer-Encoding: binary");
  33. echo $file_data;
  34. }

最新文章

  1. 【BZOJ-4380】Myjnie 区间DP
  2. mac下配置Qt for Android+iOS
  3. jquery操作select(取值,设置选中)
  4. 解决&quot;System.AccessViolationException”类型的未经处理的异常在 未知模块(IIS Worker Process 已停止工作)导致无法连接远程数据库的问题
  5. sprint3(第二天)
  6. git rebase 介绍
  7. Btn要记得对状态进行设置
  8. 2005: [Noi2010]能量采集 - BZOJ
  9. http://www.aboutyun.com/thread-6551-1-1.html
  10. C语言字节对齐
  11. 关于I/O的那点事
  12. [zoj 3774]Power of Fibonacci 数论(二次剩余 拓展欧几里得 等比数列求和)
  13. mini-httpd源码分析-version.h
  14. ORACLE union order by
  15. 简谈java 中的 继承和多态
  16. 关于hue安装后出现KeyError: &quot;Couldn&#39;t get user id for user hue&quot;的解决方法
  17. MFC中应用对象的成员:窗口指针m_pMainWnd说明
  18. rest_framework 跨域和CORS
  19. simHash 简介以及 java 实现
  20. Python之socket编程进阶版

热门文章

  1. BadUSB测试记录
  2. 使用Arduino模块实施无线信号的重放攻击
  3. cocos2dx 3.1.1移植安卓apk (lua项目交叉编译 mac环境下)
  4. LUN挂载到Linux主机后,如何对磁盘进行分区
  5. C语言SQLite3基本操作Demo
  6. [LeetCode&amp;Python] Problem 590. N-ary Tree Postorder Traversal
  7. PDF软件推荐——Sumatra PDF - imsoft.cnblogs
  8. hdu2084 数塔 DP
  9. MySQL--禁用账号和设置账号有效期
  10. install kde in ubuntu