Skip to content

Instantly share code, notes, and snippets.

@juliendsv
Created May 29, 2013 14:23
Show Gist options
  • Save juliendsv/5670643 to your computer and use it in GitHub Desktop.
Save juliendsv/5670643 to your computer and use it in GitHub Desktop.
PHP Convert UTC to Local time
<?php
$timezone = 'Europe/Madrid';
$date_utc = '2013-05-17 21:54:26.0 UTC';
date_default_timezone_set($timezone);
$time = strtotime($date_utc);
echo $date_utc . "\n";
echo date("Y-m-d H:i:s", $time) . "\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment