没有shell_exec的结果

时间:2016-07-05 09:30:22

标签: php shell-exec

我试图在PHP脚本中运行一个shell命令,该脚本在终端中工作但不在我的PHP应用程序中。

此命令

$ cp /path/to/file /another/path/to/file

在PHP中使用此行:

<?php shell_exec('cp /path/to/file /another/path/to/file') ?>

所以shell_exec一般都有效。

不幸的是这个命令

$ jpegtran -copy none -optimize -outfile /another/path/to/file /path/to/file

没有在PHP中工作:

<?php shell_exec('jpegtran -copy none -optimize -outfile /another/path/to/file /path/to/file') ?>

0 个答案:

没有答案