Chrome嵌入式PDF下载文件名

时间:2016-07-25 09:49:03

标签: html google-chrome pdf download filenames

我有以下内容可视化地将pdf嵌入到我的页面中:

<embed src="modules/files/actions/get_file.php?id=134" 
type="application/pdf" 
style="border: 0px; width: 100%; min-height: 500px" 
title="Project Report project_102587.pdf">

当我使用chrome内部pdf查看器的下载按钮时,建议的文件名显示为get_file,但我希望它是项目报告project_102587.pdf,如title属性中所示。 我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

get_file.php中的

添加包含文件名的头文件(在数据流之前添加)

header('Content-Disposition: inline; filename="Project_Report_xxxx.pdf"');