//有時我們不想讓瀏覽器直接打開文件,如PDF文件,而是要直接下載文件,那么以下函數可以強制下載文件
//函數中使用了application/octet-stream頭類型。
function downloads($filename,$dir='./')
{$filepath = $dir.$filename;if (!file_exists($filepath)) {header("Content-type: text/html; charset=utf-8");echo "File not found!";exit;} else {$file = fopen($filepath, "r");Header("Content-type: application/octet-stream");Header("Accept-Ranges: bytes");Header("Accept-Length: " . filesize($filepath));Header("Content-Disposition: attachment; filename=".$filename);echo "正在下載".fread($file, filesize($filepath));}}
downloads('a/a.sql');
?