當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP timezone_location_get()用法及代碼示例


timezone_location_get()函數是PHP中的內置函數,用於返回給定時區的位置信息。日期時間對象作為參數發送到timezone_location_get()函數,並且它返回與時區有關的位置信息(如果成功,則失敗)。

用法:

timezone_location_get( $object )

參數:該函數接受強製的單個參數$object。它用於指定DateTimeZone對象。


返回值:此函數成功時返回給定時區的位置信息,失敗時返回False。

異常:timezone_location_get()函數是DateTimeZone::getLocation()函數的別名。

以下示例程序旨在說明PHP中的timezone_location_get()函數:

程序1:

<?php 
  
// Opening a timezone 
$timeZone = timezone_open("Asia/Kolkata"); 
  
// Displaying the location details of a timezone 
echo "Location Details of the Specified Timezone:\n"; 
  
print_r(timezone_location_get($timeZone)); 
?>
輸出:
Location Details of the Specified Timezone:
Array
(
    [country_code] => IN
    [latitude] => 22.53333
    [longitude] => 88.36666
    [comments] => 
)

程序2:

<?php 
  
// Declaring a timezone 
$timeZone = new DateTimeZone("Asia/Kolkata"); 
  
// Displaying the location details of a timezone 
echo ("Location Details of the Specified Timezone:\n"); 
  
print_r($timeZone->getLocation()); 
?>
輸出:
Location Details of the Specified Timezone:
Array
(
    [country_code] => IN
    [latitude] => 22.53333
    [longitude] => 88.36666
    [comments] => 
)

相關文章:

參考: http://php.net/manual/en/function.timezone-location-get.php



相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 PHP | timezone_location_get() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。