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
相關用法
- d3.js d3.lab()用法及代碼示例
- PHP exp()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP abs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP tan( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- d3.js d3.sum()用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 PHP | timezone_location_get() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。