Skip to content

Instantly share code, notes, and snippets.

@dostrog
Last active November 24, 2017 09:02
Show Gist options
  • Save dostrog/a4172c53f1e8593eef45af34c8f87cb1 to your computer and use it in GitHub Desktop.
Save dostrog/a4172c53f1e8593eef45af34c8f87cb1 to your computer and use it in GitHub Desktop.
Get timestamp in local TimeZone (PHP)
$dateWithTZ = new DateTime(null, new DateTimeZone('Europe/Moscow'));
$dateTimeNow = $dateWithTZ->getTimestamp() + $dateWithTZ->getOffset();
echo 'Default timezone E/M: '.$dateTimeNow."\r\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment