DateTimeZone::getLocation
timezone_location_get
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
DateTimeZone::getLocation -- timezone_location_get — 返回與時區相關的定位資訊。
說明
物件導向風格
public DateTimeZone::getLocation(): array
過程化風格
返回與時區相關的定位資訊,包括國家程式碼,緯度/經度和解釋。
返回值
陣列,包含與時區相關的定位資訊。
範例
示例 #1 DateTimeZone::getLocation() 函式的範例:
<?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] => )