/**
* 获取当前时间戳带微秒
* @return float
*/
function microtime_float()
{
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
} 如果帮助到你,请赏杯奶茶喝~
- 本文链接: https://www.shx1024.top//index/article/details/article_id/93.shtml
- 版权声明:本博客所有文章除特别声明外,均默认采用 许可协议。