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


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


IntlCalendar::isWeekend()函數是PHP中的內置函數,用於檢查給定的日期/時間是否在周末。

用法:

  • 麵向對象的風格
    bool IntlCalendar::isWeekend( float $date = NULL )
  • 程序風格
    bool intlcal_is_weekend( IntlCalendar $cal, float $date = NULL )

參數:此函數使用上麵提到和下麵描述的兩個參數:


  • $cal:此參數保存IntlCalendar對象的資源。
  • $date:此參數保存可選的時間戳,該時間戳表示自該紀元以來的毫秒數,不包括leap秒。如果此參數的值為NULL,則使用當前時間。

返回值:此函數返回布爾值,該布爾值表示給定時間是否發生在周末。

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

程序:

<?php 
  
// Set the DateTime zone 
ini_set('date.timezone', 'Asia/Calcutta'); 
  
// Create an instance of IntlCalendar 
$calendar = IntlCalendar::createInstance('Asia/Calcutta'); 
  
// Check the given DateTime is weekend or not 
var_dump($calendar->isWeekend()); 
  
// Set the DateTime to the object 
$calendar->set(2019, 8, 29); 
  
// Check the given DateTime is weekend or not 
var_dump($calendar->isWeekend()); 
  
// Set the DateTime object 
$calendar->isWeekend(strtotime('2019-09-22 12:30:00')); 
  
// Check the given DateTime is weekend or not 
var_dump($calendar->isWeekend()); 
  
?>
輸出:
bool(false)
bool(true)
bool(true)

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



相關用法


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