《PHP编程:PHP实现在线阅读PDF文件的方法》要点:
本文介绍了PHP编程:PHP实现在线阅读PDF文件的方法,希望对您有用。如果有疑问,可以联系我们。
本文实例讲述了PHP实现在线阅读PDF文件的办法.分享给大家供大家参考.具体实现办法如下: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);
}
}
read_pdf('Python_study.pdf');
希望本文所述对大家的php程序设计有所赞助.PHP教程
欢迎参与《PHP编程:PHP实现在线阅读PDF文件的方法》讨论,分享您的想法,维易PHP学院为您提供专业教程。