gpt4 book ai didi

php微秒

转载 作者:可可西里 更新时间:2023-10-31 23:58:02 26 4
gpt4 key购买 nike

我正在使用
echo date('H:i:s')."这一步时间\n";
为了知道每个功能需要多少时间才能执行。

我怎么知道时间也有微秒?

最佳答案

补充一下,PHP 的 microtime()函数,可以这样使用:

$time_start = microtime(true);

//do stuff here

$time_end = microtime(true);
$time = $time_end - $time_start;

echo "It took $time seconds\n";

关于php微秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/772917/

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