gpt4 book ai didi

php - 将文件作为附件发送到浏览器

转载 作者:可可西里 更新时间:2023-10-31 23:05:48 24 4
gpt4 key购买 nike

如果目标文件位于第三方服务器上(无需事先下载或流式传输),如何将文件作为附件发送到浏览器?

最佳答案

从另一台服务器不下载到您的服务器:

header('Location: http://thirdparty.com/file.ext');

如果不在本地下载文件,你就没有外部服务器的授权,所以你必须告诉浏览器做什么,因此重定向 header ,它会告诉服务器直接转到提供的 url,从而加载下载.

从你的服务器你会做:

if (file_exists($file))
{
if(false !== ($handler = fopen($file, 'r')))
{
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file)); //Remove

//Send the content in chunks
while(false !== ($chunk = fread($handler,4096)))
{
echo $chunk;
}
}
exit;
}
echo "<h1>Content error</h1><p>The file does not exist!</p>";

取自另一个question我有 answered

关于php - 将文件作为附件发送到浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5641492/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com