你好朋友,這我的我的PHP代碼。PHP時間戳轉換爲JavaScript?
<?php
$date3=date_default_timezone_set('Europe/Paris');
echo $abc3=date('Y-m-d h:i:s');
$t3= strtotime($abc3) * 1000;
?>
打印日期爲2014-01-23 08:43:45
朋友這是我的JavaScript代碼
<script>
var t3=<?php echo $t3; ?>;
function update_clock3(){
var now = new Date(Number(t3));
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds();
alert(hours +":"+ minutes + ":" + seconds);
}
</script>
的JavaScript代碼是打印日期是錯誤的。
javascript output is under。
十三時13分45秒
請幫助我哪裏做的錯誤。
謝謝。
下面
嘿皮納請你可以在這個時區tyr。 '亞洲/ Hong_Kong' –
我在這個timzone上有很長的不同。 –
我編輯我的答案,添加時區檢查並刪除歐洲/巴黎硬編碼。 – Pinal