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

WBOY
發布: 2016-07-25 08:54:50
原創
1034 人瀏覽過
  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强制下载文件。



來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板