gpt4 book ai didi

PHP开始时间和结束时间问题

转载 作者:行者123 更新时间:2023-12-04 06:11:19 25 4
gpt4 key购买 nike

class Test extends Controller {    
public function start_process(){
$begin_time = time();
echo $begin_time ; // suppose it shows 1318412333
// statement 1
// statement 2
// statement 3
// statement 4
// statement 5
// statement 6
// some more code

$this->end_process($begin_time);
}

public function end_process($begin_time){
$end_time = time();
echo $begin_time . " " . $end_time;
}
}

现在,当我在 end_process 函数中回显时。假设 end_time 是 1318412390,我得到的 begin_time 与 end_time 相同。为什么会发生这种情况.. 如何获得在第一个函数中设置的原始 begin_time

最佳答案

尝试使用 microtime .当执行时间少于一秒时,它会为您提供更准确的时间读数。

编辑
microtime(true);将时间作为浮点数返回,因此更容易看到差异。

关于PHP开始时间和结束时间问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7738478/

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