DateTimeZone::getName()函数是PHP中的内置函数,用于返回创建的时区的名称。
用法:
DateTimeZone::getName()
参数:该函数不接受任何参数。
返回值::此函数返回创建的时区的名称。
以下示例程序旨在说明DateTimeZone::getName()函数:
程序1::
<?php
// PHP program to illustrate DateTimeZone::getName()
// function
// Initialising a timezone
$timeZone = "Asia/Kolkata";
// Creating DateTimeZone() object with
// the above timezone
$DatetimeZone = new DateTimeZone($timeZone);
// Getting the name of timezone
print_r($DatetimeZone->getName());
?>
输出:
Asia/Kolkata
程序2::
<?php
// PHP program to illustrate DateTimeZone::getName()
// function
// Creating DateTimeZone() object with
// a specific timezone
$DatetimeZone = new DateTimeZone("Asia/Singapore");
// Getting the name of timezone
print_r($DatetimeZone->getName());
?>
输出:
Asia/Singapore
相关用法
- 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()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | DateTimeZone::getName() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。