我正在尝试让 ImageMagick 为我计算 PDF 文件中的页数。功能如下:
<?php
function countPdfPages($filepath)
{
$magick = "identify -format %n ".$filepath;
exec($magick, $debug, $result);
return $result;
}
?>
但是,该函数始终返回0
. 我已经验证 ImageMagick 运行正常,所以这应该不是问题。我没有exec()
正确使用吗?我应该以另一种方式检索输出吗?我也尝试过使用$debug
,但奇怪的是,这并没有给我任何输出。
我敢打赌我在这里做了一些愚蠢的事情,但我只是没有看到。谁能给我推动正确的方向?谢谢!