您好,登錄后才能下訂單哦!
如何在PHP中使用X-SendFile頭讓文件下載更快?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。
代碼如下:
<?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);
但是這個(gè)有一個(gè)問(wèn)題, 就是如果文件是中文名的話, 有的用戶可能下載后的文件名是亂碼.
于是, 我們做一下修改:
復(fù)制代碼 代碼如下:
<?php
$file = "/tmp/中文名.tar.gz";
$filename = basename($file);
header("Content-type: application/octet-stream");
//處理中文文件名
$ua = $_SERVER["HTTP_USER_AGENT"];
$encoded_filename = rawurlencode($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-Length: ". filesize($file));
readfile($file);
恩, 現(xiàn)在看起來(lái)好多了, 不過(guò)還有一個(gè)問(wèn)題, 那就是readfile, 雖然PHP的readfile嘗試實(shí)現(xiàn)的盡量高效, 不占用PHP本身的內(nèi)存, 但是實(shí)際上它還是需要采用MMAP(如果支持), 或者是一個(gè)固定的buffer去循環(huán)讀取文件, 直接輸出.
輸出的時(shí)候, 如果是Apache + PHP mod, 那么還需要發(fā)送到Apache的輸出緩沖區(qū). 最后才發(fā)送給用戶. 而對(duì)于Nginx + fpm如果他們分開(kāi)部署的話, 那還會(huì)帶來(lái)額外的網(wǎng)絡(luò)IO.
那么, 能不能不經(jīng)過(guò)PHP這層, 直接讓W(xué)ebserver直接把文件發(fā)送給用戶呢?
今天, 我看到了一個(gè)有意思的文章: How I PHP: X-SendFile.
我們可以使用Apache的module mod_xsendfile, 讓Apache直接發(fā)送這個(gè)文件給用戶:
復(fù)制代碼 代碼如下:
<?php
$file = "/tmp/中文名.tar.gz";
$filename = basename($file);
header("Content-type: application/octet-stream");
//處理中文文件名
$ua = $_SERVER["HTTP_USER_AGENT"];
$encoded_filename = rawurlencode($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 . '"');
}
//讓Xsendfile發(fā)送文件
header("X-Sendfile: $file");
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。