У меня много PDF-файлов в папке.Я хочу извлечь текст из этих PDF-файлов с помощью xpdf.Например:
- example1.pdf извлечь в example1.txt
- example2.pdf извлечь в example2.txt
- и т. Д.
вот мой код:
<?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>";
}
}
}
Я получаю пустой результат.Что не так с моим кодом?