我正在使用pdfinfo来获取使用php的pdf文件中的总页数。
function getPDFNoOfPages($document) {
$cmd = "C:/wamp/www/PhpProject1/pdfinfo.exe";
exec("$cmd $document", $output);
$pagecount = 0;
foreach ($output as $op) {
// Extract the number
if (preg_match("/Pages:\s*(\d+)/i", $op, $matches) === 1) {
$pagecount = intval($matches[1]);
break;
}
}
return $pagecount;
}
$document = 'test.pdf';
echo getPDFNoOfPages($document);
这里我的pdf文件在
C:/wamp/www/PhpProject1/test.pdf
但显示输出' 0' 。提前解决这个问题