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)!