我有這樣的代碼PHP下載文件頭回聲
[... page content]
header("Content-type: application/x-download");
header("Content-Length: ".$filesize);
header("Content-Disposition: attachment; filename=".urlLastSeg($buttons['Torrent file(Torcache)']));
header("Content-Transfer-Encoding: binary");
echo $filecontent ;
然後瀏覽器提示保存文件,但該文件包含一個連接在年底,而不是單獨的二進制數據的二進制數據的頁面的HTML。
好吧,我想顯示一些頁面,然後將文件推送給用戶。如果標題處於開頭,用戶在點擊下載鏈接後會看到空白的白色屏幕? – kurdt
點擊下載鏈接後,您需要了解[http](http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol) – hek2mgl
,它會加載包含信息的新頁面'下載將立即開始',然後會出現瀏覽器'下載提示'給用戶。 – kurdt