在浏览器中查看 pdf 但保存时文件名错误

发布于 2024-10-28 00:46:39 字数 460 浏览 3 评论 0原文

我有一个表单,当用户按下下载按钮时, get_file.php 脚本会返回指定的 php 文件。在 ffx 中,当我禁用 adobe 插件时,会出现一个下载框,其中包含正确的文件名。在 IE8 中,由于某种原因,我无法禁用 adobe 插件,因此它总是在浏览器中打开。这工作正常,但是,在 ffx 和 IE8 中,当我按下 adobe 工具栏上的“保存”按钮时,我得到了错误的文件名。我得到了 get_file.pdf。

我正在使用 adobe reader 8。

这些是我设置的标题:

header("Cache-Control: private");
header("Pragma:");
header("Content-type: application/pdf");
header("Content-Disposition: inline; filename=$pdfFileName");

谢谢!

I have a form where when a user presses the download button it a get_file.php script returns the specified php file. In ffx when I disable the adobe plugin, a download box appears with the correct file name. In IE8 I cant disable the adobe plugin for some reason, so it always opens in browser. This works fine, however, in both ffx and IE8, when I press the save button from the adobe toolbar I get the wrong file name. I get get_file.pdf.

I am using adobe reader 8.

These are the headers I'm setting:

header("Cache-Control: private");
header("Pragma:");
header("Content-type: application/pdf");
header("Content-Disposition: inline; filename=$pdfFileName");

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

千秋岁 2024-11-04 00:46:39

设置 pdf 文件名相当复杂。这取决于您的需求/环境。
不久前我写了一篇关于这个主题的小文档。希望它对您有用。
https://docs.google.com/View?docid=dchmct9k_9dxkdwk

Setting tha pdf filename is quite complex. It dependeds what are you needs/environment.
Sometime ago I wrote a small doc about the topic. Hope it could be useful for you.
https://docs.google.com/View?docid=dchmct9k_9dxkdwk

孤城病女 2024-11-04 00:46:39

尝试使用 "Content-Disposition: attachment;,而不是 "Content-Disposition: inline;

Instead of "Content-Disposition: inline;, try "Content-Disposition: attachment;.

笑红尘 2024-11-04 00:46:39

只需将文件名添加到 URL 末尾,它对我来说效果很好,

例如:

get_file.php/Myfilename.pdf

Just add the filename to end of URL, it works fine for me

ex:

get_file.php/Myfilename.pdf
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文