gpt4 book ai didi

javascript getTime() 到 10 位数字

转载 作者:数据小太阳 更新时间:2023-10-29 05:41:24 25 4
gpt4 key购买 nike

我正在使用以下函数通过 javascript 获取时间:

function timeMil(){
var date = new Date();
var timeMil = date.getTime();

return timeMil;
}

我得到的值是:

1352162391299

在 PHP 中,我使用 time(); 函数来获取时间,我得到的值是

1352162391

如何转换 javascript 时间的值以删除最后 3 位数字并使其仅为 10 位数字。

From 1352162391299
To     1352162391
So that the Javascript time is the same with the PHP time.

最佳答案

我想你只需要将它除以 1000 毫秒,你就会得到以秒为单位的时间

Math.floor(date.getTime()/1000)

关于javascript getTime() 到 10 位数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13242828/

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