Skip to content

Instantly share code, notes, and snippets.

@sanbornm
Created November 19, 2013 20:57
Show Gist options
  • Save sanbornm/7552444 to your computer and use it in GitHub Desktop.
Save sanbornm/7552444 to your computer and use it in GitHub Desktop.
default timezone and back
$defaultTime = date_default_timezone_get();
date_default_timezone_set('America/Los_Angeles');
$now = date("Y-m-d H:i:s");
date_default_timezone_set($defaultTime);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment