timezone_name_get()函数是PHP中的内置函数,用于返回时区的名称。日期时间对象作为参数发送到timezone_name_get()函数,并且成功时返回时区名称,失败时返回False。
用法:
string timezone_name_get( $object )
参数:该函数接受强制的单个参数$object。它用于指定DateTimeZone对象。
返回值:如果成功,则此函数返回时区的名称;如果失败,则返回False。
异常:timezone_name_get()函数是DateTimeZone::getName()函数的别名。
以下示例程序旨在说明PHP中的timezone_name_get()函数:
程序1:
<?php
// Opening the timezone of America/Chicago
$timezone = timezone_open("America/Chicago");
// Displaying the name of the timezone
echo ("The name of the timezone is " . timezone_name_get($timezone));
?>
输出:
The name of the timezone is America/Chicago
程序2:
<?php
// Opening the default timezone
echo ("Default time zone is " . date_default_timezone_get());
echo "\n";
// Declaring a new timezone
$new_timezone = 'America/Chicago';
if( date_default_timezone_set( $new_timezone) )
{
echo "New time zone is ". date_default_timezone_get();
}
?>
输出:
Default time zone is UTC New time zone is America/Chicago
相关文章:
- PHP | timezone_location_get()函数
- PHP | timezone_name_from_abbr()函数
- PHP - timezone_version_get()用法及代码示例
参考: http://php.net/manual/en/function.timezone-name-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_name_get() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。