想知道如何确定对system()、passthru()、exec()(其中任何一个)的调用需要多长时间。为例。我使用system()来调用一个外部程序,我想计算一下它需要多长时间,这样如果它花费的时间太长,我就可以终止它或对它进行另一个操作。
$start = microtime(true);
system(....);
$end = microtime(true);
echo "system() call took ", $end - $start, " microseconds";
其余部分,请查看shell_exec()超时管理&exec ()