在没有下载提示的浏览器中查看pdf

时间:2012-07-04 10:07:29

标签: php

firefox每次都提示下载PDF文件,但Chrome浏览器在浏览器中显示PDF而没有下载提示,但我需要在没有下载提示的情况下在任何浏览器中显示PDF,有人可以帮助我吗?

这是代码

$file = 'the_pdf.pdf';


header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $file . '"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
header('Accept-Ranges: bytes');

@readfile($file);

2 个答案:

答案 0 :(得分:0)

这将基于插件。如果浏览器不知道如何打开文件,则会提示下载该文件。

答案 1 :(得分:0)

“在任何浏览器中显示PDF”:您不能,因为大多数浏览器允许通过某些设置覆盖插件的内联显示。例如,我的Opera总是打开带有下载对话框的PDF链接。网络开发人员对此无能为力。这是有目的的。

相关问题