PHP: stream remote pdf to client browser

前端 未结 1 718
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-10 06:52

there\'s a pdf generated on an external service and I would like to stream the pdf to the browser in my php server while streaming to client so that I don\'t need to downloa

相关标签:
1条回答
  • 2020-12-10 07:19

    Assuming that the generated pdf is in http://bar.com/foo.pdf, you could do:

      $data = file_get_contents("http://bar.com/foo.pdf");
      header("Content-type: application/octet-stream");
      header("Content-disposition: attachment;filename=YOURFILE.pdf");
    
      echo $data;
    
    0 讨论(0)
提交回复
热议问题