PHP获取毫秒时间戳
super
2023-11-27 17:13
1117
PHP获取毫秒时间戳:
$time = microtime(true);
$milliseconds = round($time * 1000);
echo $milliseconds;
0 条讨论