PHP -код для получения на следующий день
$tomorrow = date("Y-m-d", strtotime("+1 day"));
Cooperative Cardinal
$tomorrow = date("Y-m-d", strtotime("+1 day"));
date('Y-m-d', strtotime('+1 day', strtotime($date)))
// Prints the day
echo date("l") . "<br>";
echo date("h");