readfile.php
<?php
if(!function_exists('read_pdf')) {
function read_pdf($file) {
if(strtolower(substr(strrchr($file,'.'),1)) != 'pdf') {
echo '文件格式不对.';
return;
}
if(!file_exists($file)) {
echo '文件不存在';
return;
}
header('Content-type: application/pdf');
header('filename='.$file);
readfile($file);
}
}
/*End of PHP*/
pdf.php
<?php
include 'readfile.php';
read_pdf('pdf.pdf');
?>
注!要浏览器支持HTML5
本文介绍了一个使用PHP实现的简单方法来读取并直接在浏览器中显示PDF文件。该方法首先检查文件是否存在且为PDF格式,然后设置HTTP头信息以确保文件能正确地在支持HTML5的浏览器中打开。
981

被折叠的 条评论
为什么被折叠?



