如果意图文件位于第三方服务器上(没有事先下载或流式传输),如何将文件作为附件发送到浏览器?
答案 0 :(得分:14)
从另一台服务器无需下载到您的服务器:
header('Location: http://thirdparty.com/file.ext');
如果没有在本地下载文件,你在外部服务器上没有授权,所以你必须告诉浏览器要做什么,因此重定向标题,它会告诉服务器直接转到提供的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>";
答案 1 :(得分:5)
http://php.net/manual/en/function.header.php#example-3655
如果您希望提示用户保存您要发送的数据(例如生成的PDF文件),可以使用»Content-Disposition标头提供推荐的文件名并强制浏览器显示保存对话框。
<?php
// We'll be outputting a PDF
header('Content-type: application/pdf');
// It will be called downloaded.pdf
header('Content-Disposition: attachment; filename="downloaded.pdf"');
// The PDF source is in original.pdf
readfile('original.pdf');
?>
答案 2 :(得分:0)
正如其他人所说,您必须将响应的Content-disposition标头设置为文件下载请求。但是,您已经在第三方服务器上说过该文件。除非您可以控制服务器如何发送文件,否则您无法更改浏览器从该服务器检索的方式。
但是,您可以代理该文件,以便服务器下载该文件,然后将其传递给具有相应标头的客户端。这意味着您的带宽费用增加了一倍,因为您必须同时下载文件并上传它。
答案 3 :(得分:0)
请注意那些在包含空格的名称上遇到问题的人(例如“test test.pdf”)。
在示例中(99%的时间)您可以找到 header('Content-Disposition:attachment; filename ='。basename($ file));
但设置文件名的正确方法是引用它(双引号): header('Content-Disposition:attachment; filename =“'。basename($ file)。'”'';
有些浏览器可能没有报价,但肯定不是Firefox和Mozilla解释的,内容处理中文件名的引用是根据RFC http://kb.mozillazine.org/Filenames_with_spaces_are_truncated_upon_download
答案 4 :(得分:-1)
如果您想提供浏览器定期处理的文件(图片,HTML,...),您将添加一个标题来更改MIME类型,例如:
header("Content-Type: application/force-download; name=filename");
如果您无法访问第三方服务器,则别无选择,只能自行下载文件,通过添加标题将其提供给用户