jayjayswal
12/25/2014 - 5:06 AM

Convert mysql UTC timestamp to Local timestamp PHP

Convert mysql UTC timestamp to Local timestamp PHP

function convert_time($timestamp,$timezone)
{
    date_default_timezone_set("UTC");
    $time_object = new DateTime($timestamp, new DateTimeZone('UTC'));
    $time_object->setTimezone(new DateTimeZone($timezone));
    return $time_object->format('Y-m-d g:i A');
}