Skip to content

Instantly share code, notes, and snippets.

@dariushoule
Created May 13, 2015 21:16
Show Gist options
  • Save dariushoule/ee2cad3ed3a7c57be5b0 to your computer and use it in GitHub Desktop.
Save dariushoule/ee2cad3ed3a7c57be5b0 to your computer and use it in GitHub Desktop.
Timezones
$nowUtc = new \DateTime('now', new \DateTimeZone( 'UTC' ));
$nowUtc->setTimezone( new \DateTimeZone('Australia/Sydney'));
echo $nowUtc->format('Y-m-d h:i:s');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment