PHP強(qiáng)制下載文件
2019-01-20 23:24:45
12599
有時(shí)我們不想讓瀏覽器直接打開(kāi)文件,如PDF文件,而是要直接下載文件,那么以下函數(shù)可以強(qiáng)制下載文件,函數(shù)中使用了application/octet-stream頭類型。
function download($filename){
if ((isset($filename))&&(file_exists($filename))){
header("Content-length: ".filesize($filename));
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="' . $filename . '"');
readfile("$filename");
} else {
echo "Looks like file does not exist!";
}
}
使用方法如下:
download('/down/test_45f73e852.zip');
會(huì)員登錄
賬號(hào)登錄還沒(méi)有賬號(hào)?立即注冊(cè)