如何在 PHP 中以毫秒为单位获取当前时间?

2021-12-23 00:00:00 time milliseconds php

time() 以秒为单位 - 以毫秒为单位吗?

time() is in seconds - is there one in milliseconds?

推荐答案

简短的回答是:

$milliseconds = round(microtime(true) * 1000);

相关文章