该系统找不到指定的路径。 (exec php)

时间:2014-07-28 05:23:20

标签: php exec

我觉得这个问题很简单

我想将pdf文件转换为图片png

使用easyphp:

$gp = "C:\Program Files (x86)\ImageMagick-6.8.0-Q16\convert.exe ";
$gp = escapeshellarg($gp);
echo $gp;
echo exec($gp. " upload\pdf_file\545-1.pdf  upload\pdf_image\54.png 2>&1");

它出错了:

The system cannot find the path specified.

但是,如果我只执行C:\Program Files (x86)\ImageMagick-6.8.0-Q16\convert.exe

有效。但是有了论证,就会出现这种错误。

1 个答案:

答案 0 :(得分:0)

我终于得到了工作

 $gp= "C:\Program Files (x86)\ImageMagick-6.8.0-Q16\convert.exe ";
    $ch=" upload\\pdf_file\\135-1.pdf";
    $ch.=" upload\\pdf_image\\1.png";

     $gp=escapeshellarg($gp);
     echo exec($gp.$ch." 2>&1");