如何在 PHP 中以毫秒为单位获取当前时间?
time()
以秒为单位 - 以毫秒为单位吗?
time()
is in seconds - is there one in milliseconds?
推荐答案
简短的回答是:
$milliseconds = round(microtime(true) * 1000);
相关文章
time()
以秒为单位 - 以毫秒为单位吗?
time()
is in seconds - is there one in milliseconds?
简短的回答是:
$milliseconds = round(microtime(true) * 1000);
相关文章