PHP完全自学手册(珍藏版) 中文pdf扫描版下载
$date1=strtotime('2012-01-01'); //把日期转换成时间戳 $date2=time(); //取当前时间的时间戳 $nowtime=strftime("%y年-%m月-%d日",$date2); //格式化输出日期 $days=round(($date1-$date2)/3600/24); //四舍五入 echo "今天是".$nowtime.""; echo "
距2012年还有".$days."天";
转载请注明:谷谷点程序 » PHP计算时间(倒计时)