Skip to content

Instantly share code, notes, and snippets.

@acidtib
Forked from anonymous/timezone_test.php
Created March 8, 2013 16:10
Show Gist options
  • Save acidtib/5117558 to your computer and use it in GitHub Desktop.
Save acidtib/5117558 to your computer and use it in GitHub Desktop.
<?php
date_default_timezone_set('America/New_York');
echo "America/New_York time: ".time();
date_default_timezone_set('UTC');
echo "UTC Time: ".time();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment