DateTimeZone::getLocation

(PHP 5 >= 5.3.0, PHP 7)
Returns location information for a timezone
public array DateTimeZone::getLocation ( void )

Object oriented style

Procedural style

Returns location information for a timezone, including country code, latitude/longitude and comments.

Parameters:
object

Procedural style only: A DateTimeZone object returned by timezone_open()

Returns:

Array containing location information about timezone.

Examples:
DateTimeZone::getLocation() example
<?php
$tz = new DateTimeZone("Europe/Prague");
print_r($tz->getLocation());
print_r(timezone_location_get($tz));
?>

The above example will output:

Array
(
    [country_code] => CZ
    [latitude] => 50.08333
    [longitude] => 14.43333
    [comments] => 
)
Array
(
    [country_code] => CZ
    [latitude] => 50.08333
    [longitude] => 14.43333
    [comments] => 
)
doc_php
2016-02-24 15:56:24
Comments
Leave a Comment

Please login to continue.