php 中获取毫秒级时间戳的方法有:microtime(true) 返回精确到微秒的浮点数时间戳time() 1000 + microtime(true) 1000 返回整数毫秒时间戳gettimeofday(true) 返回数组,其中 sec 和 usec 分别表示秒和微秒,可乘以 1000 转换为毫秒时间戳
如何获取 PHP 中的时间戳(毫秒级)
在 PHP 中,有几种方法可以获取时间戳(以毫秒为单位):
1. microtime(true)
microtime(true) 函数返回当前时间戳,精确到微秒:
$timestamp = microtime(true);
登录后复制
$timestamp 的值将是一个浮点数,表示自 Unix 纪元(1970 年 1 月 1 日午夜 UTC)以来的秒数,精确到百万分之一秒。
2. time() 1000 + microtime(true) 1000
这种方法通过将 time() 函数(返回自 Unix 纪元以来的秒数)与 microtime(true) 函数相结合来获得毫秒级时间戳:
$timestamp = time() * 1000 + microtime(true) * 1000;
登录后复制
$timestamp 的值将是一个整数,表示自 Unix 纪元以来的毫秒数。
3. gettimeofday(true)
gettimeofday(true) 函数返回一个包含当前时间的数组,精确到微秒:
$timestamp = gettimeofday(true);
登录后复制
$timestamp 数组包含以下键:
- sec: 自 Unix 纪元以来的秒数
- usec: 自上一秒以来的微秒数
要获得毫秒级时间戳,可以将 sec 和 usec 乘以 1000:
$millitimestamp = ($timestamp['sec'] * 1000) + ($timestamp['usec'] / 1000);
登录后复制
以上就是php时间怎么获得毫秒的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:weapp,转转请注明出处:https://www.dingdanghao.com/article/562335.html