當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。