|
實(shí)現(xiàn)原理:我們僅僅只需要修改頁(yè)面HTTP頭,把Content-Type設(shè)置為force-download,問(wèn)題即可解決。
請(qǐng)看代碼:
復(fù)制代碼 代碼如下:
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);;
}
為了方便,我寫了一個(gè)函數(shù)forceDownload(),然后通過(guò)調(diào)用該函數(shù)即可。
php技術(shù):使用PHP強(qiáng)制下載PDF文件示例,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。