欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

PHP 读取 pdf 文件 php读取pdf文字内容 文字 和图片 v1 要求 php 7.1 以上 有大用

可以用 pdftohtml 吧,搜索本网站  "pdftohtml" 就可以了吧  有大用

PHP 读取 pdf 文件

官网地址:smalot/pdfparser

一次性读取文件中的所有内容

$parser = new \Smalot\PdfParser\Parser();// 引用类,具体根据自己文件位置
$pdf = $parser->parseFile($file_path_name); // 根目录下的文件路径
echo $pdf->getText(); //将所有内容读取到一个字符串中

分页读取

复制代码
$parser = new \Smalot\PdfParser\Parser();
$pdf = $parser->parseFile($file_path_name);  // 根目录下的文件路径
$pages = $pdf->getPages(); //分页信息
foreach ($pages as $page) {
    echo $page->getText(); //输出每一页的内容
}
复制代码

获取文件的基本信息,如:制作人、日期、总页数

$parser = new \Smalot\PdfParser\Parser();
$pdf = $parser->parseFile($file_path_name); // 根目录下的文件路径
$details = $pdf->getDetails();
parint_r($details);


来自  https://www.cnblogs.com/xuey/p/16021728.html


普通分类: