function dl_file($file){
//First, see if the file exists
if (!is_file($file)) { die("<b>404 File not found!</b>"); }
//Gather relevent info about file
$len = filesize($file);
$filename = basename($file);
$file_extension = strtolower(substr(strrchr($filename,"."),1));
//This will set the Content-Type to the appropriate setting for the file
switch( $file_extension ) {
case "pdf": $ctype="application/pdf"; break;
case "exe": $ctype="application/octet-stream"; break;
case "zip": $ctype="application/zip"; break;
case "doc": $ctype="application/msword"; break;
case "xls": $ctype="application/vnd.ms-excel"; break;
case "ppt": $ctype="application/vnd.ms-powerpoint"; break;
case "gif": $ctype="image/gif"; break;
case "png": $ctype="image/png"; break;
case "jpeg":
case "jpg": $ctype="image/jpg"; break;
case "mp3": $ctype="audio/mpeg"; break;
case "wav": $ctype="audio/x-wav"; break;
case "mpeg":
case "mpg":
case "mpe": $ctype="video/mpeg"; break;
case "mov": $ctype="video/quicktime"; break;
case "avi": $ctype="video/x-msvideo"; break;
//The following are for extensions that shouldn't be downloaded (sensitive stuff, like php files)
case "php":
case "htm":
case "html":
case "txt": die("<b>Cannot be used for ". $file_extension ." files!</b>"); break;
default: $ctype="application/force-download";
}
//Begin writing headers
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
//Use the switch-generated Content-Type
header("Content-Type: $ctype");
//Force the download
$header="Content-Disposition: attachment; filename=".$filename.";";
header($header );
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".$len);
@readfile($file);
exit;
}
函數(shù)-PHP下載文件
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
- 文/潘曉璐 我一進店門兰粉,熙熙樓的掌柜王于貴愁眉苦臉地迎上來故痊,“玉大人慨菱,你說我怎么就攤上這事符喝〗纱ǎ” “怎么了?”我有些...
- 文/不壞的土叔 我叫張陵,是天一觀的道長各拷。 經(jīng)常有香客問我,道長规哲,這世上最難降的妖魔是什么袄简? 我笑而不...
- 正文 為了忘掉前任,我火速辦了婚禮泛啸,結(jié)果婚禮上绿语,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好汞舱,可當(dāng)我...
- 文/花漫 我一把揭開白布伍纫。 她就那樣靜靜地躺著,像睡著了一般昂芜。 火紅的嫁衣襯著肌膚如雪莹规。 梳的紋絲不亂的頭發(fā)上,一...
- 文/蒼蘭香墨 我猛地睜開眼患久,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了浑槽?” 一聲冷哼從身側(cè)響起蒋失,我...
- 正文 年R本政府宣布褪子,位于F島的核電站量淌,受9級特大地震影響骗村,放射性物質(zhì)發(fā)生泄漏嫌褪。R本人自食惡果不足惜,卻給世界環(huán)境...
- 文/蒙蒙 一胚股、第九天 我趴在偏房一處隱蔽的房頂上張望笼痛。 院中可真熱鬧,春花似錦、人聲如沸缨伊。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽刻坊。三九已至枷恕,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間谭胚,已是汗流浹背徐块。 一陣腳步聲響...
推薦閱讀更多精彩內(nèi)容
- 錯誤出現(xiàn)在 attachment 后面應(yīng)該是分號而不是冒號, 因為這個錯誤下載的文件名是'download.php...
- PicJumbo锡搜,在線免費高質(zhì)量商用素材網(wǎng)橙困,是一個叫維克多的人創(chuàng)辦的這個基于網(wǎng)站設(shè)計的素材站點,因為每一個設(shè)計師都...