PHP強制檔案下載

//對於文字.txt或csv…..等等的文字檔,可以不直接顯示在網頁,而是出現下載視窗 
header("Content-Type: application/octec-stream");
header("Content-Disposition: attachment; filename=ExportMail.txt");
readfile("../ExportMail.txt");

發表迴響