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


PHP IntlCalendar inDaylightTime()用法及代碼示例


IntlCalendar::inDaylightTime()函數是PHP中的內置函數,用於檢查對象時間是否在夏時製中。

用法:

  • 麵向對象的風格
    bool public IntlCalendar::inDaylightTime( void )
  • 程序風格
    bool intlcal_in_daylight_time( IntlCalendar $cal )

參數:該函數接受單個參數$cal,該參數保存IntlCalendar對象的資源。


返回值:如果日期在夏時製中,則此函數返回TRUE,否則返回FALSE。

以下示例程序旨在說明PHP中的IntlCalendar::inDaylightTime()函數:

程序:

<?php 
  
// Set the DateTime zone 
ini_set('date.timezone', 'Europe/Lisbon'); 
  
// Create an instance of IntlCalendar 
$calendar = IntlCalendar::createInstance('Europe/Lisbon'); 
  
// Check whether the object time is in 
// Daylight Savings Time or not 
var_dump($calendar->inDaylightTime()); 
  
// Set the month field of IntlCalendar 
$calendar->set(IntlCalendar::FIELD_MONTH, 11); 
  
// Check whether the object time is in 
// Daylight Savings Time or not 
var_dump($calendar->inDaylightTime()); 
  
// Declare a IntlGregorianCalendar object 
$calendar = new IntlGregorianCalendar(2019, 8, 24, 12, 40, 10); 
  
// Check whether the object time is in 
// Daylight Savings Time or not 
var_dump($calendar->inDaylightTime()); 
  
// Set the date to DateTime object 
$calendar->set(2019, 8, 24); 
  
// Check whether the object time is in 
// Daylight Savings Time or not 
var_dump($calendar->inDaylightTime()); 
  
?>
輸出:
bool(true)
bool(false)
bool(true)
bool(true)

參考: https://www.php.net/manual/en/intlcalendar.indaylighttime.php



相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | IntlCalendar inDaylightTime() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。