


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+'<i class="h">Hou<br><b>'+myH+'<i class="m">Min<br><b>'+myM+'<i class="s">Sec<br><b>'+myS+'';}else{ var str = '<i class="d">Day<br><b>00<i class="h">Hou<br><b>00<i class="m">Min<br><b>00<i class="s">Sec<br><b>00'; }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>
Reply content:
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 <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(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>

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Following its high-profile acquisition by Facebook in 2012, Instagram adopted two sets of APIs for third-party use. These are the Instagram Graph API and the Instagram Basic Display API.As a developer building an app that requires information from a

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
