I have a PHP date in the form of 2013-01-22 and I want to get tomorrows date in the same format, so for example 2013-01-23.
2013-01-22
2013-01-23
How is this pos
Since you tagged this with strtotime, you can use it with the +1 day modifier like so:
+1 day
$tomorrow_timestamp = strtotime('+1 day', strtotime('2013-01-22'));
That said, it's a much better solution to use DateTime.