1.問題:
您嘗試讓使用者從您的問題:
您嘗試讓使用者從您的問題:
您嘗試讓使用者從您的伺服器下載文件,但文件沒有提示「另存為」對話框。
2.原因:
標頭中的內容類型聲明不正確。
header('Content-Type: application/octet-stream');
3.解決方案:
確保將內容類型標頭設定為 application/octet-stream以進行檔案下載:使用 Content-Length 標頭指定內容長度。
新增標頭以防止快取並確保檔案被保存而不是顯示在瀏覽器中。$quoted = sprintf('"%s"', addcslashes(basename($file), '"\')); $size = filesize($file); header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename=' . $quoted); header('Content-Transfer-Encoding: binary'); header('Connection: Keep-Alive'); header('Expires: 0'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Pragma: public'); header('Content-Length: ' . $size); readfile($file);
以上是如何使用'header()”強制 PHP 檔案下載?的詳細內容。更多資訊請關注PHP中文網其他相關文章!