1

異なるタイムゾーンのティッカー クロックを表示しようとしています。Webを見てみると、javascriptのオフセット(例えば+5.5時間)に数値がかかっているようです。しかし、gmtformat を取得する方法は、php では +05:30 であり、これを JavaScript 関数にフィードしようとしています。変換に使用できる関数はありますか?

/*CLOCK CODE IN JAVASCRIPT*/
function startclock(field, timediff, newOrRepeat)
{ 
    var clockAction=newOrRepeat;
if (timediff=="") {$(field).html("-------");return false;}
    /****THERE ARE MORE STUFF IN BETWEEN AND AFTER WHICH IS NOT RELEVANT TO OFFSET****/
var secondsDiff=0;
var secondsTimeZone = 0;
//calculate the difference in time set by both the timezone as well as the DST
secondsTimeZone = parseInt(timediff);


if ($("input[name='daylight']:checked").val()=="on" && $(field).siblings("#isDaylight").val()=="no")
    secondsDiff=secondsTimeZone + 3600;
else if ($("input[name='daylight']:checked").val()=="off" && $(field).siblings("#isDaylight").val()=="yes")
    secondsDiff=secondsTimeZone - 3600;
else 
    secondsDiff = secondsTimeZone;

var thetime=new Date();

thetime.setUTCSeconds(parseInt(thetime.getUTCSeconds())+parseInt(secondsDiff));
var nhours=thetime.getUTCHours();
var nmins=thetime.getUTCMinutes();
var nsecn=thetime.getUTCSeconds();

}

この関数に渡すphpから直接gmt形式を取得しています。

4

1 に答える 1

1
function convert_time($time){
    $parts = explode(':', $time);
    return $parts[0] + number_format($parts[1]/60, 2);
}  
于 2012-12-07T17:31:51.403 に答える