(PHP 5 >= 5.2.0, PHP 7)
DateTime::getTimezone -- DateTimeImmutable::getTimezone -- DateTimeInterface::getTimezone -- date_timezone_get — Return time zone relative to given DateTime
Objektorientierter Stil
Prozeduraler Stil
Return time zone relative to given DateTime.
object
Nur bei prozeduralem Aufruf: Ein von date_create() zurückgegebens DateTime Objekt.
Returns a DateTimeZone object on success
Im Fehlerfall wird FALSE
zurückgegeben..
Beispiel #1 DateTime::getTimezone() example
Objektorientierter Stil
<?php
$date = new DateTime(null, new DateTimeZone('Europe/London'));
$tz = $date->getTimezone();
echo $tz->getName();
?>
Prozeduraler Stil
<?php
$date = date_create(null, timezone_open('Europe/London'));
$tz = date_timezone_get($date);
echo timezone_name_get($tz);
?>
Die obigen Bespiele erzeugen folgende Ausgabe:
Europe/London