add 5 days to current date in php code example
Example 1: php date plus days
<?php
$date = "2019-05-10";
echo date('Y-m-d', strtotime($date. ' + 10 days'));
?>
Example 2: how to add extra days from a date php
<?php
$date = date('Y M d h:i:s')
$new_date = Carbon::parse($date->addDays(1);
$date = date('Y M d h:i:s')
echo $new_date = date('Y M d h:i:s', strtotime($date. '+1 day'));
?>
Example 3: add 7 days to date php
$date = "Mar 03, 2011";
$date = strtotime($date);
$date = strtotime("+7 day", $date);
echo date('M d, Y', $date);