ここでカウントダウンを使用していますhttp://keith-wood.name/countdown.htmlサーバー時間とすべてを追加しましたが、夏時間調整により、アプリケーションはhttp://wwwですべてのカウントダウン時間に1時間を追加します。 artfido.com
夏時間で更新されないようにサーバー時間を変更しようとしましたが、カウントダウンに1時間が追加されています。
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;
}