gpt4 book ai didi

php - 使用 php 创建 3 位数毫秒

转载 作者:可可西里 更新时间:2023-11-01 13:08:08 26 4
gpt4 key购买 nike

我有 13 位数字,想创建包含毫秒的日期和时间

示例代码是这样的,这是我的 php 脚本

$mil = 1328910295939;
$seconds = $mil / 1000;
$showdate = date('Y:m:d H:i:s', $seconds) ;

echo "$showdate";

结果是这样的 2012:02:10 15:44:55.xxx ===> xxx 是我想要显示的 3 位数毫秒。

以及如何在 H:i:s 之后包含 3 位毫秒数

请帮帮我......

最佳答案

这样的事情怎么样?

$mil = 1328910295939;

function toTimestamp($milliseconds)
{
$seconds = $milliseconds / 1000;
$remainder = round($seconds - ($seconds >> 0), 3) * 1000;

return date('Y:m:d H:i:s.', $seconds).$remainder;
}

echo toTimestamp($mil);

太棒了!

应该也很快。

另外,这是输出:2012:02:10 15:44:55.939 - 为什么你不使用 - 来分隔日期部分让我很吃惊。

关于php - 使用 php 创建 3 位数毫秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9242840/

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