pdfparser 下载地址 :http://www.pdfparser.org/
php composer 地址搜索
https://packagist.org/search/?q=pdf%20parse
安装:composer require smalot/pdfparser
用法示例:
$path = PUBLIC_PATH.’/public/1.pdf’;
$parser = new \Smalot\PdfParser\Parser();
// 调用解析方法,参数为pdf文件路径,返回结果为Document类对象
$document = $parser->parseFile($path);
// 获取所有的页
$pages = $document->getPages();
// 逐页提取文本
foreach($pages as $page){
echo($page->getText());
}
结果示例:
转载请注明:苏demo的别样人生 » php pdfparser读取pdf文件内容