在 PHP 中强制文件下载:处理远程文件
强制文件下载而不是在浏览器中打开它们对于媒体文件至关重要。为了处理这种情况,视频驻留在单独的服务器上,PHP 提供了一个涉及操作 HTTP 标头的解决方案。
// Locate the file. $file_name = 'file.avi'; $file_url = 'http://www.myremoteserver.com/' . $file_name; // Configure HTTP headers for forced download. header('Content-Type: application/octet-stream'); header("Content-Transfer-Encoding: Binary"); header("Content-disposition: attachment; filename=\"". $file_name . "\""); // Initiate the download process. readfile($file_url); // Terminate the script to prevent any further output. exit;
通过将 Content-Type 设置为 application/octet-stream,我们指示该文件是用于下载的二进制流。内容传输编码:二进制确保文件的二进制格式保持不变。最后,带附件的内容处置可确保提示用户下载文件,而不是在浏览器中打开文件。
请注意,readfile 需要启用 fopen_wrappers 才能从远程 URL 访问文件。通过利用此技术,您可以有效地强制下载存储在单独服务器上的文件,为您的网站访问者提供更加用户友好的体验。
以上是如何在 PHP 中强制文件下载:处理远程文件?的详细内容。更多信息请关注PHP中文网其他相关文章!