Home >Backend Development >PHP Tutorial >javascript-There is a countdown with two values written in PHP. I don't know how to write it. Can an expert write it down?
javascriptjsphp timestamp countdown
I saw a cyclic countdown on someone else's website. After copying it, I found that the website can automatically count down in a 3-day cycle. After checking the code, I found that there are two values in the code on the website I was interested in, var serverTime and var Htime is always changing. The source code I copied is a fixed value, so after the countdown ends, it will display 0 and the countdown will not restart. Those two values should be written in PHP, so you can only see the results when viewing the source code.
How to write the php code with the following two values (the current value below is the value when I copied it, 1000 is fixed, the other two sets of numbers are constantly changing)
var serverTime = 1470186666 * 1000;
var Htime = 226134000;
The time code is as follows (the div and CSS are not copied in). Currently, the date can be restarted in three days. The countdown is just those two values. I don’t know how to obtain the PHP code.
<code><script type="text/javascript">//var dateTimezz = new Date();//alert(dateTimezz);var serverTime = 1470186666 * 1000;var Htime = 226134000;jQuery(document).ready(function(){//var dateTime = new Date('Sun Dec 04 2015 00:00:00');//alert(dateTime.getTime());var dateTime = new Date();var difference = dateTime.getTime() - serverTime;var endTime = new Date().getTime()+Htime-difference;setInterval(function(){jQuery(".tlimit").each(function(){ var obja = jQuery(this); var dateTimez = new Date(); var strDateList = daysBetween('2015-12-06',(dateTimez.getYear()+1900)+'-'+(dateTimez.getMonth()+1)+'-'+dateTimez.getDate()).toLocaleString(); //var strDateList = daysBetween('2015-12-06','2015-12-19').toLocaleString(); var chaday = Math.ceil(strDateList/3)*3; //alert(chaday); var str2 = 'TIME LIMIT: '+dateAdd("d", chaday-2, '2015/12/06').toLocaleString()+' - '+dateAdd("d", chaday, '2015/12/06').toLocaleString();obja.html(str2);});}, 10);setInterval(function(){jQuery(".t3").each(function(){var obj = jQuery(this);var dateTimea = new Date();var nMS=endTime - dateTimea.getTime();var myD=Math.floor(nMS/(1000 * 60 * 60 * 24));var myH=Math.floor(nMS/(1000*60*60)) % 24;var myM=Math.floor(nMS/(1000*60)) % 60;var myS=Math.floor(nMS/1000) % 60;if(myD>= 0){ myD = ( ( myD < 10 ) ? "0" : "")+myD; myH = ( ( myH < 10 ) ? "0" : "")+myH; myM = ( ( myM < 10 ) ? "0" : "")+myM; myS = ( ( myS < 10 ) ? "0" : "")+myS; var str = '<i class="d">Day<br><b>' + myD+'</b></i><i class="h">Hou<br><b>'+myH+'</b></i><i class="m">Min<br><b>'+myM+'</b></i><i class="s">Sec<br><b>'+myS+'</b></i>';}else{ var str = '<i class="d">Day<br><b>00</b></i><i class="h">Hou<br><b>00</b></i><i class="m">Min<br><b>00</b></i><i class="s">Sec<br><b>00</b></i>'; }obj.html(str);});}, 10);});function daysBetween(DateOne,DateTwo) { var OneMonth = DateOne.substring(5,DateOne.lastIndexOf ('-')); var OneDay = DateOne.substring(DateOne.length,DateOne.lastIndexOf ('-')+1); var OneYear = DateOne.substring(0,DateOne.indexOf ('-')); var TwoMonth = DateTwo.substring(5,DateTwo.lastIndexOf ('-')); var TwoDay = DateTwo.substring(DateTwo.length,DateTwo.lastIndexOf ('-')+1); var TwoYear = DateTwo.substring(0,DateTwo.indexOf ('-')); var cha=((Date.parse(OneMonth+'/'+OneDay+'/'+OneYear)- Date.parse(TwoMonth+'/'+TwoDay+'/'+TwoYear))/86400000); return Math.abs(cha);}function dateAdd(strInterval, NumDay, dtDate) { var dtTmp = new Date(dtDate); if (isNaN(dtTmp)) dtTmp = new Date(); var ddTmp = new Date(Date.parse(dtTmp) + (86400000 * NumDay));return (ddTmp.getYear()+1900)+'.'+(ddTmp.getMonth()+1)+'.'+ddTmp.getDate(); /*switch (strInterval) { case "s":return new Date(Date.parse(dtTmp) + (1000 * NumDay)); case "n":return new Date(Date.parse(dtTmp) + (60000 * NumDay)); case "h":return new Date(Date.parse(dtTmp) + (3600000 * NumDay)); case "d":return ((new Date(Date.parse(dtTmp) + (86400000 * NumDay))).getYear()+1900)+'.'+((new Date(Date.parse(dtTmp) + (86400000 * NumDay))).getMonth()+1)+'.'+(new Date(Date.parse(dtTmp) + (86400000 * NumDay))).getDate(); case "w":return new Date(Date.parse(dtTmp) + ((86400000 * 7) * NumDay)); case "m":return new Date(dtTmp.getFullYear(), (dtTmp.getMonth()) + NumDay, dtTmp.getDate(), dtTmp.getHours(), dtTmp.getMinutes(), dtTmp.getSeconds()); case "y":return new Date((dtTmp.getFullYear() + NumDay), dtTmp.getMonth(), dtTmp.getDate(), dtTmp.getHours(), dtTmp.getMinutes(), dtTmp.getSeconds()); } */} </script></code>
NSTimer Write a countdown
---------------------- Hello comrade, I am the CSDN Q&A robot Xiao N. I am ordered by the organization to provide you with reference answers. Programming has not yet been successful, comrades still need to work hard!
<code>..以前帮人家写过的纯js,自己设定倒计时的时间就好,间接递归调用,会无限循环下去 //js部分 var time = 24*60*60*2; //倒计时两天的时间,自己设定 //输出信息 function begin(){ var today=new Date() var day =today.getDate() var dat=today.getMonth() var future=day+2 document.getElementById('now').innerHTML="现在时间"+dat+"月"+day+"倒计时开始" leasttime() document.getElementById("future").innerHTML="预计结束时间"+dat+"月"+future } //时间倒计时函数 function leasttime(){ var ho=time/(60*60); var mi=(time/60)%(60) var se=time%60 mi=parseInt(mi) ho=parseInt(ho) ho=checkTime(ho) se=checkTime(se) mi=checkTime(mi) time-=1; document.getElementById("last").innerHTML=ho+":"+mi+":"+se //倒计时结束 if(time==0){ // //重置计时器 ,再次开始计时 time=30; begin() } setTimeout("leasttime()",1000); } //将时间的格式转化一下 function checkTime(i) { if (i<10) {i="0" + i} return i } //HTML部分 <p id="now"></p> <p id="last"></p> <p id="future"></p> <button onclick="begin()">开始</button> </code>
<code> var curtime = Number("1470453405");//当前时间 var endTime = Number("");//结束时间 var timeoutlimit = groupEndTime-curtime; var countdown = timeoutlimit; runCountdown(); function runCountdown () { var iDay,iHour,iMinute,iSecond; if (countdown >= 0) { iDay = parseInt(countdown/3600/24); iHour = parseInt((countdown/3600)%24); iMinute = parseInt((countdown/60)%60); iSecond = Number(countdown%60).toFixed(1); if(countdown<=0){ clearTimeout(timeoutlimit); window.location.href = '/goods/item?id='+gid; } else { if(countdown>(3600*24)){ $('#rigTime').html(iDay+'天'+iHour+'小时'+iMinute+'分'+iSecond+'秒'); }else{ $('#rigTime').html(iHour+'小时'+iMinute+'分'+iSecond+'秒'); } countdown = (countdown-0.1).toFixed(1); timeoutlimit = setTimeout("runCountdown()",100); } } } </code>