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