Adding days to specific day in PHP
not to add to this day, I need to add to a specific day
1 Answer
using strtotime() function
echo date("Y-m-d", strtotime('2019-11-10 '.' +3 day')); //2019-11-13
answer Link