Php to convert UTC time to local time
Here is a simple code to convert UTC time to local time in php. The $dateInLocal displays the UTC time as localtime.
$time = strtotime($dateInUTC.' UTC');
$dateInLocal = date("Y-m-d H:i:s", $time);
echo $dateInLocal;
0 comments:
Post a Comment