0
可能重複:
Forcing to download a file using PHP
How to start file download instantly using php headers如何使視頻和音頻文件可下載?
我們正在轉換器網站,我們希望用戶下載轉換後的文件。如何使文件可下載?另一個問題是音頻文件在瀏覽器上播放,但我們希望所有的視頻和音頻文件都可以下載。 PHP代碼。
可能重複:
Forcing to download a file using PHP
How to start file download instantly using php headers如何使視頻和音頻文件可下載?
我們正在轉換器網站,我們希望用戶下載轉換後的文件。如何使文件可下載?另一個問題是音頻文件在瀏覽器上播放,但我們希望所有的視頻和音頻文件都可以下載。 PHP代碼。
使用的Content-disposition頭應該這樣做:
header("Content-disposition: attachment; filename=some_file.ext");
還包括Content-type頭是很好的做法,以及(特別是如果你使用的是PHP網頁服務的話):
header("Content-type: mime/type");
ex音頻/ mpeg(mp3),視頻/ mp4
感謝您的回覆,但我可以在哪裏放置該代碼? – yuri04 2011-12-22 10:49:43
在php頁面的頂部。必須在任何輸出之前使用'header()'函數。 – Grexis 2011-12-22 10:52:11
這對我來說並不正常。它會下載php文件,而不是輸出文件:( – yuri04 2011-12-22 11:14:55