如何在线实现阅读PDF文件的长尾关键词搜索?
- 内容介绍
- 文章标签
- 相关推荐
本文共计55个文字,预计阅读时间需要1分钟。
php
<?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');
本文共计55个文字,预计阅读时间需要1分钟。
php
<?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');

