有一个外部服务上生成的pdf,我想流pdf到浏览器在我的php服务器,而流到客户端,这样我就不需要从远程文件下载pdf,然后开始初始化下载。我会让文件立即下载或流式传输到请求它的客户端。
假设生成的pdf在http://bar.com/foo.pdf中,您可以这样做:
$data = file_get_contents("http://bar.com/foo.pdf");
header("Content-type: application/octet-stream");
header("Content-disposition: attachment;filename=YOURFILE.pdf");
echo $data;