html5/css教程

javascript教程

asp教程

php教程

jsp教程

C#/.NET教程

Python教程

网络营销

建站经验

点击排行

PHP对时间的处理(年、月、周、日、时、分、秒)

来源:中文源码网    浏览:469 次    日期:2024-03-24 21:30:42
".$nowtime."";
echo "
距".strftime("%Y-%m-%d ",$date1)."还有".$days."


"; echo "当前时间 " . date("Y-m-d h:i:s",strtotime("now")). "
"; echo "后天时间 " . date("Y-m-d h:i:s",strtotime("+2 day")). "
"; echo "下周时间 " . date("Y-m-d h:i:s",strtotime("+1 week")). "
"; echo "下月时间 " . date("Y-m-d h:i:s",strtotime("+1 month")). "
"; echo "明年时间 " . date("Y-m-d h:i:s",strtotime("+1 year")). "
"; echo "下周2天4小时2秒后的时间 " . date("Y-m-d h:i:s",strtotime("+1 week 2 days 4 hours 2 seconds")). "
"; echo "下周四时间 " . date("Y-m-d h:i:s",strtotime("next thursday")). "
"; echo "上周一时间 " . date("Y-m-d h:i:s",strtotime("last monday")). "
"; echo "2015-01-04 3天后的时间 " . date("Y-m-d h:i:s",strtotime("+3 day",strtotime('2015-01-04'))); ?>

精彩推荐