檔案下載的HTTP 回應標頭
在PHP 中處理檔案下載時,設定適當的HTTP 標頭以指示瀏覽器執行以下操作至關重要啟動下載而不是在瀏覽器中顯示文件。要考慮的基本標頭之一是“Content-Type”。
「Content-Type」的重要性
設定「Content-Type」標頭至關重要在某些情況下,正如一些用戶報告的,文件類型識別不正確。如果未能指定“Content-Type”,瀏覽器可能會採用預設假設,從而導致不適當的檔案處理。
通用檔案類型
雖然可以對於各種檔案副檔名的硬編碼mime 類型,更通用的解決方案是使用已知mime 類型數組根據檔案擴展名動態確定mime 類型。這種方法簡化了流程,避免了大量硬編碼的需要。
效能最佳化
為了解決所提供的程式碼片段中面臨的效能問題,值得檢查該檔案size 和用於讀取檔案的區塊大小。如果檔案大小很大,而區塊大小相對較小,則可能會導致瀏覽器下載對話方塊出現顯著延遲。考慮使用更大的區塊大小來提高效能。
更新的程式碼
這是所提供程式碼的最佳化版本,解決了前面提到的問題:
/** * Outputs the specified file to the browser. * * @param string $filePath the path to the file to output * @param string $fileName the name of the file * @param string $mimeType the type of file */ function outputFile($filePath, $fileName, $mimeType = '') { // Setup $mimeTypes = array( 'pdf' => 'application/pdf', 'txt' => 'text/plain', 'html' => 'text/html', 'exe' => 'application/octet-stream', 'zip' => 'application/zip', 'doc' => 'application/msword', 'xls' => 'application/vnd.ms-excel', 'ppt' => 'application/vnd.ms-powerpoint', 'gif' => 'image/gif', 'png' => 'image/png', 'jpeg' => 'image/jpg', 'jpg' => 'image/jpg', 'php' => 'text/plain' ); $fileSize = filesize($filePath); $fileName = rawurldecode($fileName); $fileExt = ''; // Determine MIME Type if($mimeType == '') { $fileExt = strtolower(substr(strrchr($filePath, '.'), 1)); if(array_key_exists($fileExt, $mimeTypes)) { $mimeType = $mimeTypes[$fileExt]; } else { $mimeType = 'application/force-download'; } } // Disable Output Buffering @ob_end_clean(); // IE Required if(ini_get('zlib.output_compression')) { ini_set('zlib.output_compression', 'Off'); } // Send Headers header('Content-Type: ' . $mimeType); header('Content-Disposition: attachment; filename="' . $fileName . '"'); header('Content-Transfer-Encoding: binary'); header('Accept-Ranges: bytes'); // Send Headers: Prevent Caching of File header('Cache-Control: private'); header('Pragma: private'); header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Multipart-Download and Download Resuming Support if(isset($_SERVER['HTTP_RANGE'])) { list($a, $range) = explode('=', $_SERVER['HTTP_RANGE'], 2); list($range) = explode(',', $range, 2); list($range, $rangeEnd) = explode('-', $range); $range = intval($range); if(!$rangeEnd) { $rangeEnd = $fileSize - 1; } else { $rangeEnd = intval($rangeEnd); } $newLength = $rangeEnd - $range + 1; // Send Headers header('HTTP/1.1 206 Partial Content'); header('Content-Length: ' . $newLength); header('Content-Range: bytes ' . $range - $rangeEnd / $fileSize); } else { $newLength = $fileSize; header('Content-Length: ' . $fileSize); } // Output File $chunkSize = 8 * (1024*1024); $bytesSend = 0; if($file = fopen($filePath, 'r')) { if(isset($_SERVER['HTTP_RANGE'])) { fseek($file, $range); while(!feof($file) && !connection_aborted() && $bytesSend < $newLength) { $buffer = fread($file, $chunkSize); echo $buffer; flush(); $bytesSend += strlen($buffer); } fclose($file); } } }
結論
透過設定適當的「Content-Type」並最佳化檔案讀取和輸出,此更新的程式碼應該會增強PHP 腳本處理的檔案下載的效能和可靠性.
以上是設定正確的 HTTP 標頭如何增強 PHP 中的下載體驗?的詳細內容。更多資訊請關注PHP中文網其他相關文章!