首页 > 后端开发 > php教程 > 如何在 PHP 中强制从远程存储下载文件?

如何在 PHP 中强制从远程存储下载文件?

Susan Sarandon
发布: 2024-11-15 01:46:02
原创
603 人浏览过

How to Force File Downloads in PHP from Remote Storage?

通过远程文件存储强制在 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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板