timezone_location_get()函數(shù)返返回時區(qū)的位置信息
timezone_location_get()函數(shù)返回時區(qū)的位置信息,包括國家代碼,緯度/經(jīng)度和注釋。
timezone_location_get ( DateTimeZone $object ) ;
序號 | 參數(shù)及說明 |
---|---|
1 | object (必需) 由timezone_open()返回的DateTimeZone對象 |
包含有關(guān)時區(qū)的位置信息的數(shù)組,失敗時為False。
此函數(shù)最初是在PHP版本5.3.0中引入的,并且可用于所有更高版本。
DateTimeZone::getLocation()示例-
<?php $tz = new DateTimeZone("Asia/Shanghai"); print_r($tz->getLocation()); print_r(timezone_location_get($tz)); ?>測試看看?/?
輸出結(jié)果
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 )