PHP | timezone_location_get()函数
timezone_location_get()函数是PHP中的一个内置函数,用于返回给定时区的位置信息。日期时间对象作为参数发送到 timezone_location_get()函数,成功时返回与时区相关的位置信息,失败时返回 False。
句法:
timezone_location_get( $object )
参数:此函数接受单个参数$object ,这是必需的。它用于指定 DateTimeZone 对象。
返回值:此函数在成功时返回给定时区的位置信息,在失败时返回 False。
例外: timezone_location_get()函数是 DateTimeZone::getLocation()函数的别名。
下面的程序说明了PHP中的 timezone_location_get()函数:
方案一:
输出:
Location Details of the Specified Timezone:
Array
(
[country_code] => IN
[latitude] => 22.53333
[longitude] => 88.36666
[comments] =>
)
方案二:
getLocation());
?>
输出:
Location Details of the Specified Timezone:
Array
(
[country_code] => IN
[latitude] => 22.53333
[longitude] => 88.36666
[comments] =>
)
相关文章:
- PHP | timezone_open()函数
- PHP | timezone_version_get()函数
参考: 函数 : PHP 。 PHP