Skip to content

Instantly share code, notes, and snippets.

@nurtext
Last active December 16, 2015 13:39
Show Gist options
  • Save nurtext/5443710 to your computer and use it in GitHub Desktop.
Save nurtext/5443710 to your computer and use it in GitHub Desktop.
Get tomorrow's date
<?php
// Optional
date_default_timezone_set('Europe/Berlin');
// Set the date to tomorrow (midnight)
$tomorrow = new DateTime('tomorrow');
// Print the result
print_r($tomorrow);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment