我試圖強制用戶下載一個文件。對於我的腳本是:如何知道你迫使用戶下載的文件的文件類型?
$file = "file\this.zip";
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename=$file");
header("Content-Type: application/zip"); //This is what I need
header("Content-Transfer-Encoding: binary");
readfile($file);
我要上傳我無法名爲.zip的所有時間的文件,所以我想知道我會收到$文件中的圖像的內容類型。 如何做到這一點
...我認爲他的意思是編程... – 2010-05-25 08:01:07