php在线查看pdf文件

来源:互联网 发布:java中属性是什么意思 编辑:程序博客网 时间:2024/05/21 09:40




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
0 0
原创粉丝点击