我在这里使用倒计时http://keith-wood.name/countdown.html并且我已经添加了服务器时间和所有内容,但是现在有了夏令时,我的应用程序在http://www的所有倒计时时间上增加了一个小时。 artfido.com
我尝试将服务器时间更改为不使用夏令时更新,但我的倒计时仍然增加了一个小时。
UTC 时间为 +10,但不知道如何更改为没有额外的小时。
代码示例
server-time.php
<?php
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Fri, 1 Jan 2010 00:00:00 GMT"); // Date in the past
header("Content-Type: text/plain; charset=utf-8"); // MIME type
$now = new DateTime();
echo $now->format("M j, Y H:i:s O")."\n";
?>
Countdown script
$('#defaultCountdown').countdown({
until: endAuction,
serverSync: serverTime,
timezone: +10,
format: 'DHMS',...
function serverTime() {
var time = null;
$.ajax({url: 'server-time.php?random=' + Math.floor(Math.random() * 1000000),
async: false, dataType: 'text',
success: function(text) {
time = new Date(text);
}, error: function(http, message, exc) {
time = new Date();
}});
return time;
}