To get tomorrow’s date in PHP, you can use the strtotime
function, which calculates dates based on date strings.
Example:
$tomorrow = date('Y-m-d', strtotime('tomorrow'));
echo $tomorrow;
In this example:
strtotime('tomorrow')
calculates tomorrow’s date.date('Y-m-d', ...)
formats the date in theYYYY-MM-DD
format.
If you need tomorrow’s date in a different format, you can modify the format string in the date()
function.