首頁  >  文章  >  後端開發  >  PHP強制下載PDF檔案的程式碼

PHP強制下載PDF檔案的程式碼

WBOY
WBOY原創
2016-07-25 08:54:501028瀏覽
  1. forceDownload("pdfdemo.pdf");

  2. function forceDownload($filename) {

  3. if (false == file_exists($filename)) {

  4. return false;
  5. }

  6. // http headers

  7. header('Content-Type: application-x/force-download');
  8. header('Content-Disposition: attachment; filename="' . basename($filename) .'"');
  9. header('Content-length: ' . filesize($filename));

  10. // for IE6

  11. if (false === strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6')) {
  12. header('Cache-Control: no-cache, must-revalidate');
  13. }
  14. header('Pragma: no-cache');

  15. // read file content and output

  16. return readfile($filename);;
  17. }

复制代码

说明: 以上实现一个函数forceDownload(),然后通过调用该函数即可实现php强制下载文件。



陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn