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


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


IntlCalendar::setTimeZone()函数是PHP中的内置函数,用于为该日历设置新的时区。时间以对象表示,并且保留时区字段值。

用法:

  • 面向对象的风格
    bool IntlCalendar::setTimeZone( mixed $timeZone )
  • 程序风格
    bool intlcal_set_time_zone( IntlCalendar $cal, mixed $timeZone )

参数:此函数使用上面提到和下面描述的两个参数:


  • $cal:此参数保存IntlCalendar的资源。
  • $timeZone:此参数保存此日历使用的新时区。
    • 空值:将使用默认时区。
    • IntlTimeZone:直接使用。
    • DateTimeZone:将提取DateTimeZone对象的标识符,并创建一个ICU时区对象。
    • 串:它应该是有效的ICU时区标识符。

返回值:成功时返回TRUE,失败时返回FALSE。

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

程序:

<?php 
  
// Set the date timezone 
ini_set('date.timezone', 'Asia/Calcutta'); 
  
// Create a DateTime object 
$calendar = IntlCalendar::fromDateTime('2019-03-21 09:19:29'); 
  
// Format the DateTime object  
echo IntlDateFormatter::formatObject($calendar, IntlDateFormatter::FULL), "\n"; 
  
// Create new IntlGregorianCalendar object 
$calendar->setTimezone(new DateTimeZone('Asia/Singapore'));  
  
// Format the DateTime object  
echo IntlDateFormatter::formatObject($calendar, IntlDateFormatter::FULL), "\n"; 
  
// Set the timezone 
$calendar->setTimeZone('GMT+05:30'); 
  
// Format the DateTime object  
echo IntlDateFormatter::formatObject($calendar, IntlDateFormatter::FULL), "\n"; 
  
// Set the timezone 
$calendar->setTimeZone(IntlTimeZone::getGMT()); 
  
// Format the DateTime object  
echo IntlDateFormatter::formatObject($calendar, IntlDateFormatter::FULL); 
  
?>
输出:
Thursday, March 21, 2019 at 9:19:29 AM India Standard Time
Thursday, March 21, 2019 at 11:49:29 AM Singapore Standard Time
Thursday, March 21, 2019 at 9:19:29 AM GMT+05:30
Thursday, March 21, 2019 at 3:49:29 AM GMT

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



相关用法


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