文件下载的 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中文网其他相关文章!