gpt4 book ai didi

php - 在 PHP 中执行的持续时间

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:53:28 24 4
gpt4 key购买 nike

我需要用 PHP 编写一些程序,但我必须知道第 5 行和第 14 行之间的执行时间。

问题是我找不到任何我想做的事情(计算那两行之间的执行时间)。

我怎样才能将它与另一个 Action 同步?

谢谢。

最佳答案

只需使用 microtime() ,

这是一个简单的例子:

<?php
//get initial start time
$time_start = microtime(true);

//then do your php goodness...

//get script end time
$time_end = microtime(true);

//calculate the difference between start and stop
$time = $time_end - $time_start;

//echo it
echo "Did whatever in $time seconds\n";
?>

或者像这样:

<?php
//get initial start time
$time_start = microtime(true);

//then do your php goodness...
sleep(2);

//echo it
echo sprintf("Did whatever in %.3f seconds", (float)microtime(true)-$time_start);
?>

关于php - 在 PHP 中执行的持续时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10440841/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com