使用PHP强制下载PDF文件示例
前端之家收集整理的这篇文章主要介绍了
使用PHP强制下载PDF文件示例,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们有时会遇到这样一种情况,当需要下载一个PDF文件时,如果不经处理会直接在浏览器里打开PDF文件,然后再需要通过另存为才能保存下载文件。本文将通过PHP来实现直接下载PDF文件。 实现原理:我们仅仅只需要修改页面HTTP头,把Content-Type设置为force-download,问题即可解决。 请看代码:
<div class="codetitle"><a style="CURSOR: pointer" data="10454" class="copybut" id="copybut10454" onclick="doCopy('code10454')"> 代码如下:
<div class="codebody" id="code10454">
forceDownload("pdfdemo.pdf");
function forceDownload($filename) { if (false == file_exists($filename)) {
return false;
} // http headers
header('Content-Type: application-x/force-download');
header('Content-Disposition: attachment; filename="' . basename($filename) .'"');
header('Content-length: ' . filesize($filename)); // for IE6
if (false === strpos($_SERVER['HTTP_USER_AGENT'],'MSIE 6')) {
header('Cache-Control: no-cache,must-revalidate');
}
header('Pragma: no-cache'); // read file content and output
return readfile($filename);;
}