gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 05:23:30 26 4
gpt4 key购买 nike

我想得到的是非常像time(),但应该以毫秒为单位:

2010-11-15 21:21:00:987

这在 PHP 中可能吗?

最佳答案

function udate($format, $utimestamp = null) {
if (is_null($utimestamp))
$utimestamp = microtime(true);

$timestamp = floor($utimestamp);
$milliseconds = round(($utimestamp - $timestamp) * 1000000);

return date(preg_replace('`(?<!\\\\)u`', $milliseconds, $format), $timestamp);
}

echo udate('Y-m-d H:i:s:u'); // 2010-11-15 21:21:00:987

关于php - 如何在 PHP 中获取以毫秒为单位的当前时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4184769/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com