在浏览器中查看 pdf 但保存时文件名错误
我有一个表单,当用户按下下载按钮时, 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
设置 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
尝试使用
"Content-Disposition: attachment;
,而不是"Content-Disposition: inline;
。Instead of
"Content-Disposition: inline;
, try"Content-Disposition: attachment;
.只需将文件名添加到 URL 末尾,它对我来说效果很好,
例如:
Just add the filename to end of URL, it works fine for me
ex: