当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。