1

我的文件夹中有很多 PDF。我想使用 xpdf 从这些 PDF 中提取文本。例如 :

  • example1.pdf 提取到 example1.txt
  • example2.pdf 提取到 example2.txt
  • ETC..

这是我的代码:

<?php

$path = 'C:/AppServ/www/pdfs/';
$dir = opendir($path);
$f = readdir($dir);

while ($f = readdir($dir)) {
    if (eregi("\.pdf",$f)){
        $content = shell_exec('C:/AppServ/www/pdfs/pdftotext '.$f.' ');
        $read = strtok ($f,".");
        $testfile = "$read.txt";
        $file = fopen($testfile,"r");
        if (filesize($testfile)==0){} 
        else{
           $text = fread($file,filesize($testfile));
        fclose($file);
        echo "</br>"; echo "</br>";
        }
    }
}

我得到空白结果。我的代码有什么问题?

4

3 回答 3

2

尝试使用这个:

$dir      = opendir($path);
$filename = array();

while ($filename = readdir($dir)) {
if (eregi("\.pdf",$filename)){
    $content  = shell_exec('C:/AppServ/www/pdfs/pdftotext '.$filename.' ');
    $read     = strtok ($filename,".");
    $testfile = "$read.txt";
    $file     = fopen($testfile,"r");
    if (filesize($testfile)==0){} 
    else{
        $text = fread($file,filesize($testfile));
        fclose($file);
        echo "</br>"; echo "</br>";
    }
}
于 2012-08-08T07:25:47.683 回答
0

您不必创建临时 txt 文件

$command = '/AppServ/www/pdfs/pdftotext ' . $filename . ' -';
$a = exec($command, $text, $retval);
echo $text;

如果它不起作用,请检查服务器的错误日志。

于 2012-02-15T01:27:47.260 回答
0

线条

echo "</br>";
echo "</br>";

应该

echo "</br>";
echo $text."</br>";

希望这可以帮助

于 2012-12-13T12:43:54.737 回答