0
我開始我下載了PHP腳本,這是非常簡單的,看起來像這樣:下載使用PHP腳本 - .rar程序.rar.html成爲在Mac
$dir = 'downloads/';
$type = 'application/x-rar-compressed, application/octet-stream, application/zip';
function makeDownload($file, $dir, $type)
{
header("Content-Type: $type");
header("Content-Disposition: attachment; filename=\"$file\"");
readfile($dir.$file);
}
if(!empty($_GET['file']) && !preg_match('=/=', $_GET['file'])) {
if(file_exists ($dir.$_GET['file'])) {
makeDownload($_GET['file'], $dir, $type);
}
}
它適用於WIN7 + FF /歌劇罰款/ chrome/safari,但在MAC上它會嘗試下載file.rar.html或file.zip.html而不是file.rar/file.zip。
任何想法爲什麼?
預先感謝
哇,就是這樣。非常感謝你! – knzo