gpt4 book ai didi

JavaScript "how many seconds have passed since this timestamp"

转载 作者:行者123 更新时间:2023-11-28 20:39:26 24 4
gpt4 key购买 nike

这个 PHP 代码有等效的 Javascript 吗?

function secondsAgo($unixtime){
return time() - $unixtime;
}

使用示例:

echo secondsAgo(time()-10); // 10

我有一个 JavaScript 中的 unixtimestamp,需要找出从今天到该时间戳已经过去了多少秒。

最佳答案

相当于:

function secondsAgo(unixTime) {
return Math.round((new Date().getTime() / 1000)) - unixTime;
}

关于JavaScript "how many seconds have passed since this timestamp",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14696538/

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