$date = date(\'Y-m-d\',current_time(\'timestamp\', 0));
How do I change $date to $date + 5 days?
$date
$date + 5 days
PHP version is 5
You can use
strtotime(“+5 days”)
to get the current date plus 5 days or
$targetDate = date($date, strtotime(’+5 days’));