PHP强制下载PDF文件的代码

发布时间:2020-09-07编辑:脚本学堂
分享一个php实现强制下载文件的代码,学习下php强制下载的实现方法,有需要的朋友参考下。

当需要下载一个PDF文件时,如果不经处理会直接在浏览器里打开PDF文件,然后再需要通过另存为才能保存下载文件。

本文通过PHP来实现直接下载PDF文件。

实现原理:
只需要修改页面HTTP头,把Content-Type设置为force-download。

例子:
 

复制代码 代码示例:

<?php
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);;
}

说明:
以上实现一个函数forceDownload(),然后通过调用该函数即可实现php强制下载文件。