咱们有时会遇到这样一种状况,当须要下载一个PDF文件时,若是不经处理会直接在浏览器里打开PDF文件,而后再须要经过另存为才能保存下载文件。本文将经过PHP来实现直接下载PDF文件。php
实现原理:咱们仅仅只须要修改页面HTTP头,把Content-Type设置为force-download,问题便可解决。(更多PHP教程请访问代码家园)请看代码:
html
- forceDownload("pdfdemo.pdf");
- function forceDownload($filename) {
-
- if (false == file_exists($filename)) {
- return false;
- }
-
-
- header('Content-Type: application-x/force-download');
- header('Content-Disposition: attachment; filename="' . basename($filename) .'"');
- header('Content-length: ' . filesize($filename));
-
-
- if (false === strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6')) {
- header('Cache-Control: no-cache, must-revalidate');
- }
- header('Pragma: no-cache');
-
-
- return readfile($filename);;
- }
为了方便,我写了一个函数forceDownload(),而后经过调用该函数便可。浏览器
转载请注明:代码家园 » 使用PHP强制下载PDF文件
本文原地址:http://www.daimajiayuan.com/sitejs-17816-1.htmlapp