欢迎各位兄弟 发布技术文章
这里的技术是共享的
composer require smalot/pdfparser
1
下载后引入 alt_autoload.php-dist 文件
<?php // Parse PDF file and build necessary objects. $parser = new \Smalot\PdfParser\Parser(); $pdf = $parser->parseFile('/path/to/document.pdf'); $text = $pdf->getText(); //打印内容 echo $text;
来自 https://blog.csdn.net/lihua123456123/article/details/124689005