里獲取的php服務端的時間 純JS是獲取客服端時間! ...
里獲取的php服務端的時間 純JS是獲取客服端時間!
<?php
//php的時間是以秒算。js的時間以毫秒算
date_default_timezone_set('PRC');
//date_default_timezone_set("Asia/Hong_Kong");//地區
$timestr = "2015-4-3 18:50:00";//倒計時時間
$time = strtotime($timestr);//時間戳
$nowtime = time();//當前時間戳
if ($time>=$nowtime){
$overtime = $time-$nowtime; //實際剩下的時間(單位/秒)
}else{
$overtime=0;
}
?>
<script language="JavaScript">
var runtimes = 0;
function GetRTime(){
var nMS = <?php echo $overtime; ?>*1000-runtimes*1000;
if (nMS>=0){
var nD=Math.floor(nMS/(1000*60*60*24))%24;
var nH=Math.floor(nMS/(1000*60*60))%24;
var nM=Math.floor(nMS/(1000*60)) % 60;
var nS=Math.floor(nMS/1000) % 60;
document.getElementById("RemainD").innerHTML=nD;
document.getElementById("RemainH").innerHTML=nH;
document.getElementById("RemainM").innerHTML=nM;
document.getElementById("RemainS").innerHTML=nS;
runtimes++;
if(nD==0){
//天數0 隱藏天數
document.getElementById(