2014过年倒计时示例
编程学习 2021-07-05 09:49www.dzhlxh.cn编程入门
这篇文章主要介绍了2014过年倒计时示例,需要的朋友可以参考下
2014马上过年倒计时小程序
<?php
$zero1=strtotime (date(“y-m-d h:i:s”)); //当前时间
$zero2=strtotime (“2014-1-31 24:00:00′); //过年时间
$guonian=ceil(($zero2-$zero1)/86400); //60s*60min*24h
echo “离过年还有<strong>$guonian</strong>天!”;
?>
代码如下:
<?php
$zero1=strtotime (date(“y-m-d h:i:s”)); //当前时间
$zero2=strtotime (“2014-1-31 24:00:00′); //过年时间
$guonian=ceil(($zero2-$zero1)/86400); //60s*60min*24h
echo “离过年还有<strong>$guonian</strong>天!”;
?>
上一篇:php比较两个绝对时间的大小
下一篇:php curl post 时出现的问题解决