Answers for "convert utc to local time php"

PHP
0

convert utc to local time php

// create a $dt object with the UTC timezone
$dt = new DateTime('2016-12-12 12:12:12', new DateTimeZone('UTC'));

// change the timezone of the object without changing its time
$dt->setTimezone(new DateTimeZone('America/Denver'));

// format the datetime
$dt->format('Y-m-d H:i:s T');
Posted by: Guest on February-15-2022

Code answers related to "convert utc to local time php"

Browse Popular Code Answers by Language