×

微秒级计时函数

小布 小布 发表于2018-07-11 09:47:41 浏览794 评论0

抢沙发发表评论

function microtime_float()
{
    list($usec, $sec) = explode(" ", microtime());
    return ((float)$usec + (float)$sec);
}