如何从其他服务器显示PDF

时间:2014-06-06 06:53:19

标签: php pdf

我使用以下脚本在浏览器中显示PDF。

$vPath = '/path/to/pdf/example.pdf';

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

PDF文件位于脚本所在的同一台服务器上。 但现在我必须将PDF移动到图像服务器(此处仅存在PDF和图像文件)

如何从其他服务器显示PDF?请帮忙

1 个答案:

答案 0 :(得分:0)

谢谢你们。

我做了一个工作。使用上述代码的问题是使用的相对路径。相反,我使用IFRAME以绝对路径显示PDF。

$vPath = 'http://path/to/pdf/example.pdf';
<iframe src="<?php echo $vPath;?>" style="width:600px; height:500px;" frameborder="0"></iframe>