zl程序教程

您现在的位置是:首页 >  其它

当前栏目

2014过年倒计时示例

示例 倒计时 2014 过年
2023-06-13 09:15:17 时间
2014马上过年倒计时小程序
复制代码代码如下:

<?php
$zero1=strtotime(date(“y-m-dh:i:s”));//当前时间
$zero2=strtotime(“2014-1-3124:00:00′); //过年时间
$guonian=ceil(($zero2-$zero1)/86400);//60s*60min*24h
echo“离过年还有<strong>$guonian</strong>天!”;
?>