讓PHP更快的提供文件下載

一般來說, 我們可以通過直接讓URL指向一個位於Document Root下面的文件, 來引導用戶下載文件.

但是, 這樣做, 就沒辦法做一些統計, 權限檢查, 等等的工作. 於是, 很多時候, 我們採用讓PHP來做轉發, 爲用戶提供文件下載.

  1. <?php
  2.     $file = "/tmp/dummy.tar.gz";
  3.     header("Content-type: application/octet-stream");
  4.     header('Content-Disposition: p_w_upload; filename="' . basename($file) . '"');
  5.     header("Content-Length: ". filesize($file));
  6.     readfile($file);

但是這個有一個問題, 就是如果文件是中文名的話, 有的用戶可能下載後的文件名是亂碼.

於是, 我們做一下修改(參考: :

  1. <?php
  2.     $file = "/tmp/中文名.tar.gz";
  3.  
  4.     $filename = basename($file);
  5.  
  6.     header("Content-type: application/octet-stream");
  7.  
  8.     //處理中文文件名
  9.     $ua = $_SERVER["HTTP_USER_AGENT"];
  10.     $encoded_filename = rawurlencode($filename);
  11.     if (preg_match("/MSIE/", $ua)) {
  12.      header('Content-Disposition: p_w_upload; filename="' . $encoded_filename . '"');
  13.     } else if (preg_match("/Firefox/", $ua)) {
  14.      header("Content-Disposition: p_w_upload; filename*=\"utf8''" . $filename . '"');
  15.     } else {
  16.      header('Content-Disposition: p_w_upload; filename="' . $filename . '"');
  17.     }
  18.  
  19.     header("Content-Length: ". filesize($file));
  20.     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直接發送這個文件給用戶:

  1. <?php
  2.     $file = "/tmp/中文名.tar.gz";
  3.  
  4.     $filename = basename($file);
  5.  
  6.     header("Content-type: application/octet-stream");
  7.  
  8.     //處理中文文件名
  9.     $ua = $_SERVER["HTTP_USER_AGENT"];
  10.     $encoded_filename = rawurlencode($filename);
  11.     if (preg_match("/MSIE/", $ua)) {
  12.      header('Content-Disposition: p_w_upload; filename="' . $encoded_filename . '"');
  13.     } else if (preg_match("/Firefox/", $ua)) {
  14.      header("Content-Disposition: p_w_upload; filename*=\"utf8''" . $filename . '"');
  15.     } else {
  16.      header('Content-Disposition: p_w_upload; filename="' . $filename . '"');
  17.     }
  18.  
  19.     //讓Xsendfile發送文件
  20.     header("X-Sendfile: $file");

X-Sendfile頭將被Apache處理, 並且把響應的文件直接發送給Client.

Lighttpd和Nginx也有類似的模塊, 大家有興趣的可以去找找看 :)

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章