首頁  >  文章  >  後端開發  >  如何為 PDF 檔案下載設定正確的 PHP 標頭:常見方法為何失敗以及如何修復?

如何為 PDF 檔案下載設定正確的 PHP 標頭:常見方法為何失敗以及如何修復?

Barbara Streisand
Barbara Streisand原創
2024-11-03 03:34:02707瀏覽

How to Set the Correct PHP Headers for PDF File Download: Why Does the Common Approach Fail and How to Fix It?

如何為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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn