我需要一些帮助来编写一个脚本,该脚本可以计算unix时间戳的天数,小时数,分钟数和秒数。
使用php
创建时间戳<? php echo hours ();?>
我希望脚本能够使用JavaScript实时倒计时。
示例 2天,3:15:39
希望有人可以帮我一点:)
答案 0 :(得分:6)
首先你有一些PHP错误。应该是例如。
<?php echo time(); ?>
我在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