javascript和php中的时间戳倒计时
我需要一些帮助来编写一个脚本,该脚本可以减少unix时间戳记中的天,小时,分钟和秒。
时间戳是用php创建的
我希望脚本能够使用JavaScript实时倒计时。
例 2天,3:15:39
希望有人可以帮我一点:)
首先你有一些PHP错误。 它应该是例如
我在JavaScript中使用时间戳,以便于显示示例。
http://jsfiddle.net/pimvdb/AvXd3/
// the difference timestamp var timestamp = (Date.now() + 1000 * 60 * 60 * 24 * 3) - Date.now(); timestamp /= 1000; // from ms to seconds function component(x, v) { return Math.floor(x / v); } var $div = $('div'); setInterval(function() { // execute code each second timestamp--; // decrement timestamp with one second each second var days = component(timestamp, 24 * 60 * 60), // calculate days from timestamp hours = component(timestamp, 60 * 60) % 24, // hours minutes = component(timestamp, 60) % 60, // minutes seconds = component(timestamp, 1) % 60; // seconds $div.html(days + " days, " + hours + ":" + minutes + ":" + seconds); // display }, 1000); // interval each second = 1000 ms