>백엔드 개발 >PHP 튜토리얼 >PDF 파일을 강제로 다운로드하는 PHP 코드

PDF 파일을 강제로 다운로드하는 PHP 코드

WBOY
WBOY원래의
2016-07-25 08:54:501052검색
  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으로 문의하세요.