如何為PDF 檔案下載設定正確的PHP 標頭
許多使用者在嘗試設定Web 應用程式以自動開啟PDF 檔案時遇到困難點擊連結時的PDF 文件。本文旨在提供此問題的解決方案。
常見的方法是重定向到特定頁面,該頁面會產生啟動 PDF 下載所需的標頭。但是,以下程式碼片段經常會失敗:
<code class="php">$filename = './pdf/jobs/pdffile.pdf; $url_download = BASE_URL . RELATIVE_PATH . $filename; header("Content-type:application/pdf"); header("Content-Disposition:inline;filename='$filename\""); readfile("downloaded.pdf");</code>
要解決此問題,建議在w3schools 上遵循範例2 中演示的方法:
<code class="php">header("Content-type:application/pdf"); // Set the desired file name for download header("Content-Disposition:attachment;filename=\"downloaded.pdf\""); // Read the PDF content from its source file readfile("original.pdf");</code>
至關重要請記住header() 必須位於任何實際輸出之前。在 PHP 版本 4 及更高版本中,可以使用輸出緩衝來規避此限制。
以上是如何為 PDF 檔案下載設定正確的 PHP 標頭:常見方法為何失敗以及如何修復?的詳細內容。更多資訊請關注PHP中文網其他相關文章!