finding next date from date php code example
Example 1: php strtotime 1 day ago from
date('Y-m-d', strtotime('+1 day', strtotime($date)))
Example 2: php tomorrow
$tomorrow = new DateTime('tomorrow');
echo $tomorrow->format('Y-m-d');
date('Y-m-d', strtotime('+1 day', strtotime($date)))
$tomorrow = new DateTime('tomorrow');
echo $tomorrow->format('Y-m-d');