使用shell_exec()在脚本中运行两次命令

时间:2014-03-04 17:41:01

标签: php shell-exec

我有这个:

<?php shell_exec('some_command') ?>;

如何多次运行'some_command'?

我是一个代码整洁的怪人,不止一次地称他们为我的眼睛。

1 个答案:

答案 0 :(得分:2)

将命令放在参数中两次:

<?php shell_exec('some_command; some_command'); ?>

或致电shell_exec两次:

<?php shell_exec('some_command'); shell_exec('some_command'); ?>