返回與時區相關的定位資訊。

DateTimeZone::getLocation

timezone_location_get

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

DateTimeZone::getLocation -- timezone_location_get返回與時區相關的定位資訊。

說明

物件導向風格

public DateTimeZone::getLocation(): array

過程化風格

返回與時區相關的定位資訊,包括國家程式碼,緯度/經度和解釋。

參數

object

僅過程化風格:由 timezone_open() 返回的 DateTimeZone 對象。

返回值

陣列,包含與時區相關的定位資訊。

範例

示例 #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] => 
)

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *