找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1576|回复: 0

[教程] 让PHP更快的提供文件下载

[复制链接]
发表于 2013-4-6 10:59:39 | 显示全部楼层 |阅读模式 来自 中国–广东–湛江
  1. 一般来说, 我们可以通过直接让URL指向一个位于Document Root下面的文件, 来引导用户下载文件.
  2.              但是, 这样做, 就没办法做一些统计, 权限检查, 等等的工作. 于是, 很多时候, 我们采用让PHP来做转发, 为用户提供文件下载.
  3.             
  4.              <?php
  5.              $file = '/tmp/dummy.tar.gz';
  6.              header('Content-type: application/octet-stream');
  7.              header('Content-Disposition: attachment; filename='' . basename($file) . ''');
  8.              header('Content-Length: '. filesize($file));
  9.              readfile($file);
  10.             
  11.              但是这个有一个问题, 就是如果文件是中文名的话, 有的用户可能下载后的文件名是乱码.
  12.              于是, 我们做一下修改(参考: :
  13.             
  14.              <?php
  15.              $file = '/tmp/中文名.tar.gz';
  16.              $filename = basename($file);
  17.              header('Content-type: application/octet-stream');
  18.              //处理中文文件名
  19.              $ua = $_SERVER['HTTP_USER_AGENT'];
  20.              $encoded_filename = urlencode($filename);
  21.              $encoded_filename = str_replace('+', '%20', $encoded_filename);
  22.              if (preg_match('/MSIE/', $ua)) {
  23.              header('Content-Disposition: attachment; filename='' . $encoded_filename . ''');
  24.              } else if (preg_match('/Firefox/', $ua)) {
  25.              header('Content-Disposition: attachment; filename*='utf8''' . $filename . ''');
  26.              } else {
  27.              header('Content-Disposition: attachment; filename='' . $filename . ''');
  28.              }
  29.              header('Content-Disposition: attachment; filename='' . $filename . ''');
  30.              header('Content-Length: '. filesize($file));
  31.              readfile($file);
  32.             
  33.              恩, 现在看起来好多了, 不过还有一个问题, 那就是readfile, 虽然PHP的readfile尝试实现的尽量高效, 不占用PHP本身的内存, 但是实际上它还是需要采用MMAP(如果支持), 或者是一个固定的buffer去循环读取文件, 直接输出.
  34.              输出的时候, 如果是Apache + PHP mod, 那么还需要发送到Apache的输出缓冲区. 最后才发送给用户. 而对于Nginx + fpm如果他们分开部署的话, 那还会带来额外的网络IO.
  35.              那么, 能不能不经过PHP这层, 直接让Webserver直接把文件发送给用户呢?
  36.              今天, 我看到了一个有意思的文章: How I PHP: X-SendFile.
  37.              我们可以使用Apache的module mod_xsendfile, 让Apache直接发送这个文件给用户:
  38.             
  39.              <?php
  40.              $file = '/tmp/中文名.tar.gz';
  41.              $filename = basename($file);
  42.              header('Content-type: application/octet-stream');
  43.              //处理中文文件名
  44.              $ua = $_SERVER['HTTP_USER_AGENT'];
  45.              $encoded_filename = urlencode($filename);
  46.              $encoded_filename = str_replace('+', '%20', $encoded_filename);
  47.              if (preg_match('/MSIE/', $ua)) {
  48.              header('Content-Disposition: attachment; filename='' . $encoded_filename . ''');
  49.              } else if (preg_match('/Firefox/', $ua)) {
  50.              header('Content-Disposition: attachment; filename*='utf8''' . $filename . ''');
  51.              } else {
  52.              header('Content-Disposition: attachment; filename='' . $filename . ''');
  53.              }
  54.              header('Content-Disposition: attachment; filename='' . basename($file) . ''');
  55.              //让Xsendfile发送文件
  56.              header('X-Sendfile: $file');
  57.             
  58.              X-Sendfile头将被Apache处理, 并且把响应的文件直接发送给Client.
  59.              Lighttpd和Nginx也有类似的模块, 大家有兴趣的可以去找找看
复制代码

发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;

如何回报帮助你解决问题的坛友,好办法就是点击帖子下方的评分按钮给对方加【金币】不会扣除自己的积分,做一个热心并受欢迎的人!

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则 需要先绑定手机号

关闭

站长推荐上一条 /1 下一条

QQ|侵权投诉|广告报价|手机版|小黑屋|西部数码代理|飘仙建站论坛 ( 豫ICP备2022021143号-1 )

GMT+8, 2024-11-22 17:26 , Processed in 0.046358 second(s), 9 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表