PHP
Referenzliste
timezone_location_get
Datums- und Zeit-Funktionen
Befehl:
array timezone_location_get ( DateTimeZone $object )
Beschreibung:
Diese Funktion ist ein Alias für: DateTimeZone::getLocation()
Aktiv in Version:
(PHP 5 >= 5.3.0, PHP 7)
timezone_location_get() - Beispiel
Eingabe:
<?php $tz = new DateTimeZone("Europe/Prague"); print_r($tz->getLocation()); print_r(timezone_location_get($tz)); ?>
Ausgabe:
Array
(
[country_code] => CZ
[latitude] => 50.08333
[longitude] => 14.43333
[comments] =>
)
Array
(
[country_code] => CZ
[latitude] => 50.08333
[longitude] => 14.43333
[comments] =>
)
(
[country_code] => CZ
[latitude] => 50.08333
[longitude] => 14.43333
[comments] =>
)
Array
(
[country_code] => CZ
[latitude] => 50.08333
[longitude] => 14.43333
[comments] =>
)
Datums- und Zeit-Funktionen