确定 php 中 system()、pastrus()、exec() 操作花费的时间

发布于 2024-12-02 01:46:21 字数 120 浏览 1 评论 0原文

想知道如何确定调用 system()、passthru()、exec()(其中任意一个)需要多长时间。例如。我使用 system() 来调用外部程序,我想计算它需要多长时间,以便如果花费太长时间我可以杀死它或对其执行其他操作。

Want to know how to determine how long a call to system(), passthru(), exec() (either of these) takes. For example. I use system() to call an external program, I would like to time how long it takes so that if it's taking too long I can kill it or do another operation on it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆沫 2024-12-09 01:46:21
$start = microtime(true);
system(....);
$end = microtime(true);

echo "system() call took ", $end - $start, " microseconds";

对于其余的,请查看 shell_exec() 超时管理和执行()

$start = microtime(true);
system(....);
$end = microtime(true);

echo "system() call took ", $end - $start, " microseconds";

For the rest, check out shell_exec() timeout management & exec()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文