(PHP 5 >= 5.2.0)
DateTime::setTimezone — Sets the time zone for the DateTime object
Nur bei prozeduralem Aufruf: Ein von date_create() zurückgegebens DateTime Objekt.
Desired time zone.
Returns the modified DateTime.
Beispiel #1 Setting and getting DateTimeZone objects
<?php
date_default_timezone_set('Europe/London');
$datetime = new DateTime('2008-08-03 12:35:23');
echo $datetime->getTimezone()->getName() . "\n";
$datetime = new DateTime('2008-08-03 12:35:23');
$la_time = new DateTimeZone('America/Los_Angeles');
$datetime->setTimezone($la_time);
echo $datetime->getTimezone()->getName();
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
Europe/London America/Los_Angeles