increment date by one month

前端 未结 18 2510
广开言路
广开言路 2020-11-27 04:14

Let\'s say I have a date in the following format: 2010-12-11 (year-mon-day)

With PHP, I want to increment the date by one month, and I want the year to be automatica

18条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-27 04:28

    $date = strtotime("2017-12-11");
    $newDate = date("Y-m-d", strtotime("+1 month", $date));
    

    If you want to increment by days you can also do it

    $date = strtotime("2017-12-11");
    $newDate = date("Y-m-d", strtotime("+5 day", $date));
    

提交回复
热议问题