通过远程文件存储强制在 PHP 中下载文件
向网站添加“下载此文件”功能,同时防止直接播放在浏览器中,请考虑以下 PHP 解决方案:
// Locate the remote file. $file_name = 'file.avi'; $file_url = 'http://www.myremoteserver.com/' . $file_name; // Configure the download settings. header('Content-Type: application/octet-stream'); header('Content-Transfer-Encoding: Binary'); header('Content-disposition: attachment; filename="' . $file_name . '"'); // Download the remote file content. readfile($file_url); // Ensure no output follows the download. exit;
首先,PHP 脚本定位远程文件并设置必要的 HTTP 标头以强制下载而不是播放。
脚本使用 readfile() 函数检索远程文件的内容。请注意,必须启用 fopen_wrappers 设置,PHP 才能读取远程 URL。
最后,脚本退出以防止任何可能干扰下载过程的进一步输出。
以上是如何在 PHP 中强制从远程存储下载文件?的详细内容。更多信息请关注PHP中文网其他相关文章!