how to add 1 day in date in php code example
Example 1: php date + one day
<?php
$stop_date = '2009-09-30 20:24:00';
echo 'date before day adding: ' . $stop_date;
$stop_date = date('Y-m-d H:i:s', strtotime($stop_date . ' +1 day'));
echo 'date after adding 1 day: ' . $stop_date;
?>
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 1 day php datetime
$date = new DateTime('2000-01-01');
$date->add(new DateInterval('P1D'));