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');