Görüntünün doğru yolu php) (exec intikalini

0 Cevap php

Hi I am trying to use the following script to count the number of pdf pages in a pdf file.

   $filename = $_ENV{'HOMEDIR'}."/www/path/to/pdf/file";
$cmd = "/usr/local/nf/bin/identify -density 12 -format '%p' '$filename' ";

$out = array();

exec($cmd,$out,$error);

foreach($out as $f=>$v)
{
    echo "$f = $v ";
}

Ancak ben hiçbir çıkış olsun. Ben onun bir yolu, ilgili konu bence. Komut satırı komutları yollara başvurmak için nasıl? Herhangi bir yardım rehberlik lütfen!

thanks Rahul

0 Cevap