PHP shell_exec()vs exec()

时间:2011-08-17 13:42:38

标签: php shell command exec

我很难理解shell_exec()exec() ...

之间的区别

我一直使用exec()来执行服务器端命令,我什么时候才能使用shell_exec()

shell_exec()只是exec()的简写吗?参数较少似乎是一样的。

4 个答案:

答案 0 :(得分:325)

shell_exec以字符串形式返回所有输出流。 exec默认返回输出的最后一行,但可以将所有输出作为指定为第二个参数的数组提供。

答案 1 :(得分:69)

以下是不同之处。请注意最后的换行符。

> shell_exec('date')
string(29) "Wed Mar  6 14:18:08 PST 2013\n"
> exec('date')
string(28) "Wed Mar  6 14:18:12 PST 2013"

> shell_exec('whoami')
string(9) "mark\n"
> exec('whoami')
string(8) "mark"

> shell_exec('ifconfig')
string(1244) "eth0      Link encap:Ethernet  HWaddr 10:bf:44:44:22:33  \n          inet addr:192.168.0.90  Bcast:192.168.0.255  Mask:255.255.255.0\n          inet6 addr: fe80::12bf:ffff:eeee:2222/64 Scope:Link\n          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1\n          RX packets:16264200 errors:0 dropped:1 overruns:0 frame:0\n          TX packets:7205647 errors:0 dropped:0 overruns:0 carrier:0\n          collisions:0 txqueuelen:1000 \n          RX bytes:13151177627 (13.1 GB)  TX bytes:2779457335 (2.7 GB)\n"...
> exec('ifconfig')
string(0) ""

请注意,使用backtick operatorshell_exec()相同。

更新:我真的应该解释最后一个。几年后看这个答案,即使我不知道为什么会出现空白!丹尼尔在上面解释了 - 因为exec只返回最后一行,而ifconfig的最后一行恰好是空白。

答案 2 :(得分:48)

shell_exec - 通过shell 执行命令并将完整输出作为字符串返回

exec - 执行外部程序。

不同之处在于,使用shell_exec可以将输出作为返回值。

答案 3 :(得分:35)

这里没有涉及到一些区别:

  • 使用exec(),您可以传递一个可选的param变量,该变量将接收输出行数组。在某些情况下,这可能会节省时间,尤其是在命令输出已经是表格的情况下。

比较

exec('ls', $out);
var_dump($out);
// Look an array

$out = shell_exec('ls');
var_dump($out);
// Look -- a string with newlines in it

相反,如果命令的输出是xml或json,那么将每一行作为数组的一部分并不是你想要的,因为你需要将输入后处理成其他形式,所以在那里case使用shell_exec。

值得指出的是,shell_exec是fortic运算符的别名,对于那些习惯于* nix的人来说。

$out = `ls`;
var_dump($out);

exec还支持一个附加参数,该参数将提供执行命令的返回码:

exec('ls', $out, $status);
if (0 === $status) {
    var_dump($out);
} else {
    echo "Command failed with status: $status";
}

如shell_exec手册页中所述,当您实际需要从正在执行的命令返回代码时,您别无选择,只能使用exec。