php倒计时实例程序,php倒计时实例,php倒计时程序
[08-23 22:10:12] 来源:http://www.duoxue8.com PHP教程 阅读:301次
php倒计时实例程序,php倒计时实例,php倒计时程序,标签:PHP技巧,php培训,php学习,php安装,http://www.duoxue8.com
今天设计PHP程序,需要整一个今天日特价促销的动态倒计时程式,绝对使用JS 实现该功能。好,话不多说,看下面php倒计时实例程序源码:
php 代码复制内容到剪贴板
- <?php
- //php的时间是以秒算。js的时间以毫秒算
- date_default_timezone_set("Asia/Hong_Kong");//地区
- //配置每天的活动时间段
- $starttimestr = "09:00:00";
- $endtimestr = "23:50:00";
- $starttime = strtotime($starttimestr);
- $endtime = strtotime($endtimestr);
- $nowtime = time();
- if ($nowtime<$starttime){
- die("活动还没开始,活动时间是:{$starttimestr}至{$endtimestr}");
- }
- $lefttime = $endtime-$nowtime; //实际剩下的时间(秒) ///在实际开发中,这个$lefttime可以在PHP函数中实现,包含在返回的特价商品数组中
- ?>
//前台页面代码
xhtml 代码复制内容到剪贴板
php倒计时实例程序,php倒计时实例,php倒计时程序 结束。
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>PHP实时倒计时!</title>
- <script language="JavaScript">
- <!-- //
- var runtimes = 0;
- function GetRTime(){
- var nMS = <?php echo $lefttime ?>*1000-runtimes*1000;
- var nD=Math.floor(nMS/(1000*60*60*24))%365; //获取天数
- 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;
- if(nMS>5*59*1000&<=5*60*1000)
- {
- alert("还有最后五分钟!");
- }
- runtimes++;
- setTimeout("GetRTime()",1000);
- }
- window.onload=GetRTime;
- // -->
- </script>
- </head>
- <body>
- <h1>剩余<strong id="RemainD">XX</strong>天<strong id="RemainH">XX</strong>小时<strong id="RemainM">XX</strong>分<strong id="RemainS">XX</strong>秒<h1>
- </body>
- </html>
//以上源码COPY到一个PHP页面中,即可查看效果。
php倒计时实例程序,php倒计时实例,php倒计时程序 结束。
Tag:PHP教程,PHP技巧,php培训,php学习,php安装,电脑学习 - 编程入门 - PHP教程
php倒计时实例程序,php倒计时实例,php倒计时程序相关文章
- ·上一个:谈谈javascript:history.go()和History.back()的区别
- php倒计时实例程序,php倒计时实例,php倒计时程序
- › php倒计时实例程序,php倒计时实例,php倒计时程序
- 在百度中搜索相关文章:php倒计时实例程序,php倒计时实例,php倒计时程序
- 在谷歌中搜索相关文章:php倒计时实例程序,php倒计时实例,php倒计时程序
- 在soso中搜索相关文章:php倒计时实例程序,php倒计时实例,php倒计时程序
- 在搜狗中搜索相关文章:php倒计时实例程序,php倒计时实例,php倒计时程序