Skip to content

Instantly share code, notes, and snippets.

@wiyoe
Last active February 5, 2018 13:27
Show Gist options
  • Select an option

  • Save wiyoe/f69ce1c6b47ae7261f483413bbf7c2c9 to your computer and use it in GitHub Desktop.

Select an option

Save wiyoe/f69ce1c6b47ae7261f483413bbf7c2c9 to your computer and use it in GitHub Desktop.
PHP UTC Date to Locale Date
date_default_timezone_set("Europe/Istanbul");
$dateInUTC = "2018-02-05 13:22:56";
$time = strtotime($dateInUTC.' UTC');
echo $dateInLocal = date("Y-m-d H:i:s T", $time); // 2018-02-05 16:22:56 +03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment