Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jrodriguez-ifuelinteractive/2c5ef16d1dbb7c0120844b24cf2f51cd to your computer and use it in GitHub Desktop.
Save jrodriguez-ifuelinteractive/2c5ef16d1dbb7c0120844b24cf2f51cd to your computer and use it in GitHub Desktop.
<?php
$date = new DateTime('2019-01-21 00:00:00', new DateTimeZone('America/New_York'));
$date->setTimeZone(new DateTimeZone('UTC')); // New timezone
echo $date->format('Y-m-d H:i:s e'); //2019-01-21 05:00:00 UTC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment