当前位置:Gxlcms > PHP教程 > PHP求时间间隔n天、周、月、年后的时间

PHP求时间间隔n天、周、月、年后的时间

时间:2021-07-01 10:21:17 帮助过:44人阅读

  1. date_default_timezone_set('PRC'); // 设置时区
  2. $date1 = strtotime('2015-01-01'); //把日期转换成时间戳
  3. $date2 = time(); //取当前时间的时间戳
  4. $nowtime=strftime("%Y-%m-%d",$date2); //格式化输出日期
  5. $days=round(($date1-$date2)/3600/24); //四舍五入
  6. echo "今天是".$nowtime."";
  7. echo "
    距".strftime("%Y-%m-%d ",$date1)."还有".$days."


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

PHP

人气教程排行