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

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

Barbara Streisand
发布: 2024-11-02 13:28:30
原创
695 人浏览过

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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板