关于php实现倒计时的问题
<%@Language=VBScript%><html><title>倒记时间</title><body><%response.write"今天是"response.wr...
<%@ Language=VBScript %>
<html>
<title>
倒记时间
</title>
<body>
<%
response.write "今天是"
response.write formatDateTime(Date(),1) & ","
'格式化为长日期格式输出显示
response.write " 离高考还有"
response.write "<font color=blue><u>"
'调用DateDiff函数,计算日期间隔.
response.write DateDiff("d",Date(),"10-06-07")
response.write "</font></u>"
response.write "天"
%>
</body>
</html>
我想用php实现上面用 VB实现的功能 要怎么改?
各位大虾们帮忙改一下咯 谢谢 展开
<html>
<title>
倒记时间
</title>
<body>
<%
response.write "今天是"
response.write formatDateTime(Date(),1) & ","
'格式化为长日期格式输出显示
response.write " 离高考还有"
response.write "<font color=blue><u>"
'调用DateDiff函数,计算日期间隔.
response.write DateDiff("d",Date(),"10-06-07")
response.write "</font></u>"
response.write "天"
%>
</body>
</html>
我想用php实现上面用 VB实现的功能 要怎么改?
各位大虾们帮忙改一下咯 谢谢 展开
1个回答
2013-12-01
展开全部
<html>
<title>
倒记时间
</title>
<body>
<?php $date1=strtotime('2008-08-08'); //把日期转换成时间戳 $date2=time(); //取当前时间的时间戳 $nowtime=strftime("%y年-%m月-%d日",$date2); //格式化输出日期 $days=round(($date1-$date2)/3600/24); //四舍五入 echo "今天是<font color="red">".$nowtime."</font>"; echo "
距高考还有<font color="red">".$days."</font>天"; ?> </body>
</html>
<title>
倒记时间
</title>
<body>
<?php $date1=strtotime('2008-08-08'); //把日期转换成时间戳 $date2=time(); //取当前时间的时间戳 $nowtime=strftime("%y年-%m月-%d日",$date2); //格式化输出日期 $days=round(($date1-$date2)/3600/24); //四舍五入 echo "今天是<font color="red">".$nowtime."</font>"; echo "
距高考还有<font color="red">".$days."</font>天"; ?> </body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询