当前位置: 首页 > 工具软件 > PdfParser > 使用案例 >

【php】pdfparser的使用

竺展
2023-12-01
<?php

include 'vendor/autoload.php';
$parser = new Smalot\PdfParser\Parser; 
$pdf = $parser->parseFile('202112four.pdf'); 
$text = $pdf->getText(); //将所有内容读取到一个字符串中
echo $text; 
?>

 类似资料: