timezone_location_get()函数返返回时区的位置信息
timezone_location_get()函数返回时区的位置信息,包括国家代码,纬度/经度和注释。
timezone_location_get ( DateTimeZone $object ) ;
序号 | 参数及说明 |
---|---|
1 | object (必需) 由timezone_open()返回的DateTimeZone对象 |
包含有关时区的位置信息的数组,失败时为False。
此函数最初是在PHP版本5.3.0中引入的,并且可用于所有更高版本。
DateTimeZone::getLocation()示例-
<?php $tz = new DateTimeZone("Asia/Shanghai"); print_r($tz->getLocation()); print_r(timezone_location_get($tz)); ?>测试看看‹/›
输出结果
Array ( [country_code] => CN [latitude] => 31.23333 [longitude] => 121.46666 [comments] => Beijing Time ) Array ( [country_code] => CN [latitude] => 31.23333 [longitude] => 121.46666 [comments] => Beijing Time )