首页 >后端开发 >php教程 >为什么我的 PDF 下载不起作用?

为什么我的 PDF 下载不起作用?

Barbara Streisand
Barbara Streisand原创
2024-11-02 13:28:30747浏览

Why Is My PDF Download Not Working?

PDF 文件下载的 PHP 标头故障排除

问题:
尽管实现了标头配置,应用程序仍无法在用户打开 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>

解决方案:

要解决此问题,需要将标头配置调整为以下内容:

<code class="php">header("Content-type:application/pdf");

// Set the file disposition to attachment for download
header("Content-Disposition:attachment;filename=\"downloaded.pdf\"");

// Read the actual PDF file from its source
readfile("original.pdf");</code>

附加说明:

  • 在发送任何输出之前调用 header() 函数至关重要。
  • 可以使用输出缓冲在 PHP 4 及更高版本中纠正此问题。

以上是为什么我的 PDF 下载不起作用?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn