2010-07-29 48 views
0

我試圖強制下載,所以這是我的代碼:PHP的力量下載擴展

$file = 'test.m4r'; 
$mime = 'audio/aac'; 
header("Pragma: public"); // required 
header("Expires: 0"); 
header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); 
header("Cache-Control: private",false); // required for certain browsers 
header('Content-Description: File Transfer'); 
header("Content-Type: $mime"); 
header('Content-Length: ' . filesize($file));   
header('Content-Disposition: attachment; filename=' . basename($file)); 
readfile($file); 

文件擴展名應該是.m4r,即使MIME是AAC。在某些計算機上,它以test.m4r格式下載,而在其他計算機上,該文件的擴展名爲test.m4r.acc。我該如何解決這個問題?

謝謝!

回答

1

你可以說謊mimetype,但除此之外,你無法做任何事情。 嘗試:

"application/octet-stream"

這可能會實現,是未知的文件類型等

1

默認試試這個

<?php header("Content-Type: application/force-download"); ?> 
+0

$啞劇第2行定義 – enobrev 2010-07-29 03:39:33