欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP-在线阅读PDF文件

程序员文章站 2022-05-28 21:56:13
...
PHP-在线阅读PDF文件
<?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*/

以上就是PHP-在线阅读PDF文件的内容,更多相关内容请关注PHP中文网(www.php.cn)!