在线文档教程
PHP
日期和时间 | Date and Time

DateTimeZone::getLocation

DateTimeZone::getLocation

timezone_location_get

(PHP 5 >= 5.3.0, PHP 7)

DateTimeZone :: getLocation - timezone_location_get - 返回时区的位置信息

描述

面向对象的风格

public array DateTimeZone::getLocation ( void )

程序风格

array timezone_location_get ( DateTimeZone $object )

返回时区的位置信息,包括国家代码,纬度/经度和评论。

参数

`object`

仅限过程样式:由timezone_open()返回的DateTimeZone对象

返回值

包含有关时区的位置信息的数组。

例子

示例 #1 DateTimeZone::getLocation() example

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

上面的例子将输出:

Array ( [country_code] => CZ [latitude] => 50.08333 [longitude] => 14.43333 [comments] => ) Array ( [country_code] => CZ [latitude] => 50.08333 [longitude] => 14.43333 [comments] => )

← DateTimeZone::__construct

DateTimeZone::getName →