首页 > Web开发 > 详细

PHP实现在线阅读PDF文件的方法

时间:2017-02-27 10:55:58      阅读:239      评论:0      收藏:0      [点我收藏+]
<?php
//edit http://www.lai18.com
 
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‘);

 

方法二:

<a href="my.pdf">点击阅读 my.pdf </a>

 

PHP实现在线阅读PDF文件的方法

原文:http://www.cnblogs.com/hsd1727728211/p/6472532.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!