通常情况下,php只能生成秒级,微妙级时间戳,毫秒级时间戳只能自定义生成。php并没有现成的方法。
function msectime() {
list($msec, $sec) = explode(' ', microtime());
return (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000);
}
通常情况下,php只能生成秒级,微妙级时间戳,毫秒级时间戳只能自定义生成。php并没有现成的方法。
function msectime() {
list($msec, $sec) = explode(' ', microtime());
return (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000);
}
本文标题:php生成毫秒级时间戳
本文链接:https://www.haomeiwen.com/subject/iglgsftx.html
网友评论