欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP强制下载PDF文件的代码

程序员文章站 2024-04-05 13:38:30
...
  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强制下载文件。