2

我正在尝试将数据从几个 pdf 提取到数据库中,并且我找到了代码,但我只能在每次输入单个文件时让它工作。

我正在使用资源 class.pdf2text.php @ http://pastebin.com/hRviHKp1

使用代码:

*#this is outside of the loop
   include('class.pdf2text.php'); 

   #this is inside the loop
   $a = new PDF2Text();
   $a->setFilename('$userDoc'); //grab the test file at    
   $a->decodePDF();
   echo $a->output();*

我遇到的问题是成功完成第一个文档后,之后的所有文档都返回此错误致命错误:Cannot redeclare class PDF2Text in class.pdf2text.php on line 4

4

1 回答 1

0

您以某种方式再次包含该课程,没有更多代码,我们无法做到。您可以代替使用includeuse include_once,这应该可以解决您的错误。

于 2013-03-12T14:37:20.467 回答