我正在尝试使用Pdfparser库来解析 PDF 文件,但在类包含方面存在一些问题。
我阅读了文档,但它不起作用。
我使用 Windows 和 XAMPP。
- 我创建了一个目录
/xampp/htdocs/pdf_import
- 我安装了 Composer 并生成了
/vendor/autoload.php
inpdfparser-master/src
- 我使用文档中的代码示例
例子:
<?php
require 'vendor/autoload.php';
// Parse pdf file and build necessary objects.
$parser = new \Smalot\PdfParser\Parser();
$pdf = $parser->parseFile('document.pdf');
// Retrieve all pages from the pdf file.
$pages = $pdf->getPages();
// Loop over each page to extract text.
foreach ($pages as $page) {
echo $page->getText();
}
当我运行 php 脚本时,我收到此错误:
致命错误:在第 8 行的 C:\xampp\htdocs\pdf_import\pdfparser-master\src\import.php 中找不到类 'Smalot\PdfParser\Parser'