0

我试图解释一系列代表时间的数字,以便我可以在不久的将来将它们更改为不同的数字。135671800有多长?每个是什么意思?是 DD:HH:MM:SS 吗?

{"next_timestamp":1356751800,"next_duration":9000,"next_title":"Saturday Night","next_description":"Hearing and Healing"}

解释结果的原始 javascript 是:

else if (typeof data.next_timestamp !== "undefined") {
        seconds_till = data.next_timestamp - (new Date().getTime() / 1000);
        days = Math.floor((seconds_till % 31536000) / 86400);
        hours = Math.floor((seconds_till % 86400) / 3600);
        minutes = Math.floor((seconds_till % 3600) / 60);
        seconds = Math.floor(seconds_till % 60);
        return intervalId = setInterval(function() {
          if (--seconds < 0) {
            seconds = 59;
            if (--minutes < 0) {
              minutes = 59;
              if (--hours < 0) {
                hours = 23;
                  if (--days < 0) {
                days = 365;
                }
              }
            }
          }

谢谢!

4

2 回答 2

1

如果您使用的是标准时间戳,则可以只使用 Javascript Date 对象。

https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Date

var date = new Date(/* timestamp * 1000 here */);
var day = date.getDay();
var month = date.getMonth();
var year = date.getFullYear();

不知道你的间隔是什么,但如果你想把这个倒数到 0...

// Assume that date still exists.
time = date.getTime() / 1000;
time--;
date = new Date(time * 1000);
day = date.getDay();
month = date.getMonth();
year = date.getFullYear();
于 2012-12-29T00:04:50.930 回答
0

它是“纪元”(自 1970 年 1 月 1 日午夜协调世界时 (UTC) 以来经过的秒数)的秒数。实际上 2012 年 12 月 29 日星期六 03:30:00 GMT

在此处查看实时计数器 http://www.epochconverter.com/

更多关于 UNIX 时间http://en.wikipedia.org/wiki/Unix_time

于 2012-12-28T23:49:16.333 回答