如何使用PHP技术实现网站上的PDF文件在线阅读功能?
- 内容介绍
- 文章标签
- 相关推荐
本文共计91个文字,预计阅读时间需要1分钟。
php// 编辑 http://www.lai18.comif (!function_exists('read_pdf')) { function read_pdf($file) { if (strtolower(substr(strrchr($file, '.'), 1)) !='pdf') { echo '文件格式不对.'; return; } if (!file_exists($file)) { echo '文件不存在'; return; } }}
<?php //edit 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');
本文共计91个文字,预计阅读时间需要1分钟。
php// 编辑 http://www.lai18.comif (!function_exists('read_pdf')) { function read_pdf($file) { if (strtolower(substr(strrchr($file, '.'), 1)) !='pdf') { echo '文件格式不对.'; return; } if (!file_exists($file)) { echo '文件不存在'; return; } }}
<?php //edit 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');

