Add days to current date from MySQL with PHP

后端 未结 4 1476
别那么骄傲
别那么骄傲 2021-01-18 11:59

I have a fixed date from MySql

startDate = 07/03/2011

I wanted to add 60 days on top this date to have an endDate.

$startDa         


        
4条回答
  •  無奈伤痛
    2021-01-18 12:43

    86400 seconds in a day, times number of days.. and add it to current time.

    $nextMonth = time()+86400*60;
    echo date("Y-m-d H:i:s", $nextMonth);  
    

提交回复
热议问题