oncode
3/11/2014 - 6:04 PM

Convert date into another timezone.

Convert date into another timezone.

<?php

$utc = new DateTimeZone('UTC');
$newTimezone = new DateTimeZone('Europe/Zurich');
$date = new DateTime('2011-01-01 15:00:00', $utc);
$date->setTimezone($newTimezone);
echo $date->format('Y-m-d H:i:s');