php读取pdf实现在线阅读
浏览量:1483
<?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('/pdf/study.pdf'); ?>
神回复
发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
访客 回复该评论
发布于 2015-11-06 12:45:10