让PHP更快的提供文件下载的代码
前端之家收集整理的这篇文章主要介绍了
让PHP更快的提供文件下载的代码,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
但是,这样做,就没办法做一些统计,权限检查,等等的工作. 于是,很多时候,我们采用让PHP来做转发,为用户提供文件下载.
<div class="codetitle"><a style="CURSOR: pointer" data="31151" class="copybut" id="copybut31151" onclick="doCopy('code31151')"> 代码如下:
<div class="codebody" id="code31151">
<?
PHP $file = "/tmp/dummy.tar.gz";
header("Content-type: application/octet-stream");
header('Content-Disposition: attachment; filename="' . basename($file) . '"');
header("Content-Length: ". filesize($file));
readfile($file);
但是这个有一个问题,就是如果
文件是
中文名的话,有的
用户可能下载后的
文件名是乱码. 于是,我们做一下
修改(参考: :
<div class="codetitle">
<a style="CURSOR: pointer" data="22866" class="copybut" id="copybut22866" onclick="doCopy('code22866')"> 代码如下: <div class="codebody" id="code22866">
<?
PHP $file = "/tmp/
中文名.tar.gz";
$filename = basename($file);
header("Content-type: application/octet-stream");
//处理
中文文件名
$ua = $_SERVER["HTTP_USER_AGENT"];
$encoded_filename = urlencode($filename);
$encoded_filename = str_replace("+","%20",$encoded_filename);
if (preg_match("/MSIE/",$ua)) {
header('Content-Disposition: attachment; filename="' . $encoded_filename . '"');
} else if (preg_match("/Firefox/",$ua)) {
header("Content-Disposition: attachment; filename*=\"utf8''" . $filename . '"');
} else {
header('Content-Disposition: attachment; filename="' . $filename . '"');
}
header('Content-Disposition: attachment; filename="' . $filename . '"');
header("Content-Length: ". filesize($file));
readfile($file);
恩,现在看起来好多了,不过还有一个问题,那就是readfile,虽然
PHP的readfile尝试实现的尽量高效,不占用
PHP本身的内存,但是实际上它还是需要采用MMAP(如果
支持),或者是一个固定的buffer去循环读取
文件,直接
输出.
输出的时候,如果是Apache +
PHP mod,那么还需要发送到Apache的
输出缓冲区. 最后才发送给
用户. 而对于
Nginx + fpm如果他们分开部署的话,那还会带来额外的网络IO. 那么,能不能不经过
PHP这层,直接让Webserver直接把
文件发送给
用户呢?
今天,我看到了一个有意思的文章: How I PHP: X-SendFile.
我们可以使用Apache的module mod_xsendfile,让Apache直接发送这个文件给用户:
PHP $file = "/tmp/
中文名.tar.gz";
$filename = basename($file);
header("Content-type: application/octet-stream");
//处理
中文文件名
$ua = $_SERVER["HTTP_USER_AGENT"];
$encoded_filename = urlencode($filename);
$encoded_filename = str_replace("+",$ua)) {
header("Content-Disposition: attachment; filename*=\"utf8''" . $filename . '"');
} else {
header('Content-Disposition: attachment; filename="' . $filename . '"');
}
header('Content-Disposition: attachment; filename="' . basename($file) . '"');
//让Xsendfile发送
文件 header("X-Sendfile: $file");
X-Sendfile头将被Apache处理,并且把响应的
文件直接发送给Client.
Lighttpd和
Nginx也有类似的模块,大家有兴趣的可以去找找看
原文链接:https://www.f2er.com/php/27148.html