Skip to content

Instantly share code, notes, and snippets.

@davidsword
Created September 14, 2016 21:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidsword/0c844dc7d92af3ea48bfe03ef815911d to your computer and use it in GitHub Desktop.
Save davidsword/0c844dc7d92af3ea48bfe03ef815911d to your computer and use it in GitHub Desktop.
<?
date_default_timezone_set('America/New_York'); //Eastern
echo date('r')."<br />";
time_test_1();
time_test_2();
function time_test_1() {
echo date('r')."<br />";
}
function time_test_2() {
date_default_timezone_set('America/Chicago'); //Central
echo date('r')."<br />";
}
echo date('r')."<br />";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment