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


PHP IntlCalendar getTimeZone()用法及代码示例


IntlCalendar::getTimeZone()函数是PHP中的内置函数,用于返回与此日历关联的时区对象。

用法:

  • 面向对象的风格
    IntlTimeZone IntlCalendar::getTimeZone( void )
  • 程序风格
    IntlTimeZone intlcal_get_time_zone( IntlCalendar $cal )

参数:该函数接受单个参数$cal,该参数保存IntlCalendar对象的资源。


返回值:此函数返回与此日历关联的IntlTimeZone对象。

以下示例程序旨在说明PHP中的IntlCalendar::getTimeZone()函数:

程序:

<?php 
  
// Set the date timezone 
ini_set('date.timezone', 'Asia/Calcutta'); 
ini_set('intl.default_locale', 'en_US'); 
  
// Create an instance of calendar 
$calendar = IntlCalendar::createInstance(); 
  
// Get the object of timezone  
print_r($calendar->getTimeZone()); 
  
// Create new IntlGregorianCalendar object 
$calendar->setTimezone(new DateTimeZone('Asia/Singapore'));  
  
// Get the object of timezone  
print_r($calendar->getTimeZone()); 
  
// Set the timezone 
$calendar->setTimeZone('GMT+05:30'); 
  
// Get the object of timezone  
print_r($calendar->getTimeZone()); 
  
// Set the timezone 
$calendar->setTimeZone(IntlTimeZone::getGMT()); 
  
// Get the object of timezone  
print_r($calendar->getTimeZone()); 
  
?>
输出:
IntlTimeZone Object
(
    [valid] => 1
    [id] => Asia/Calcutta
    [rawOffset] => 19800000
    [currentOffset] => 19800000
)
IntlTimeZone Object
(
    [valid] => 1
    [id] => Asia/Singapore
    [rawOffset] => 28800000
    [currentOffset] => 28800000
)
IntlTimeZone Object
(
    [valid] => 1
    [id] => GMT+05:30
    [rawOffset] => 19800000
    [currentOffset] => 19800000
)
IntlTimeZone Object
(
    [valid] => 1
    [id] => GMT
    [rawOffset] => 0
    [currentOffset] => 0
)

参考: https://www.php.net/manual/en/intlcalendar.gettimezone.php



相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | IntlCalendar getTimeZone() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。