1

例如,当我将文件上传到服务器上的临时文件夹时,有没有办法扫描文件夹并检查特定文件是否为多页?

一些代码如:

$files = scandir ('$tempSrc');
foreach ($files as $pdf) {
    $isMulti = //exec some command or call php function (if any?);
    echo $isMulti;
}
4

1 回答 1

2

您可以使用http://php.net/manual/en/class.imagick.php php 类。

$files = scandir ('$tempSrc');
foreach ($files as $pdf) {
    $im = new Imagick();
    $im->pingImage($pdf);
    echo $isMulti = ($im->getNumberImages() > 1) ? true : false;
}
于 2013-09-25T09:42:27.150 回答