早睡早起,方能养生
Sleep early rise early, way to keep healthy

PHP获取毫秒时间戳

super
2023-11-27 17:13
views 508

PHP获取毫秒时间戳:

 

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

 

在线运行



分享
0 条讨论
top