我如何设置日期并在PHP中倒计时?
例如,我希望它说:
toplist在x天x小时x分钟x秒重置
顶级列表会在每个月的第1天重置。
这是我想要的照片:
答案 0 :(得分:1)
在PHP中,获取截止日期前的秒数。所以这将输出如下内容:
752200
这意味着,截止日期前752200
秒。
在客户端,尝试使用计时器插件,如Final Countdown:
<div id="getting-started"></div>
$("#getting-started")
.countdown({
seconds: // get the value from PHP
}, function(event) {
$(this).text(
event.strftime('%D days %H:%M:%S')
);
});