PHP获取毫秒时间戳
//获取毫秒时间 function microsecond() { $t = explode(" ", microtime()); $microsecond = round(round($t[1].substr($t[0],2,3))); return $microsecond; }
本文来自博客园,作者:方倍工作室,转载请注明原文链接:https://www.cnblogs.com/txw1958/p/php_microtimestamp.html
//获取毫秒时间 function microsecond() { $t = explode(" ", microtime()); $microsecond = round(round($t[1].substr($t[0],2,3))); return $microsecond; }
本文来自博客园,作者:方倍工作室,转载请注明原文链接:https://www.cnblogs.com/txw1958/p/php_microtimestamp.html