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
相關用法
- PHP IntlCalendar add()用法及代碼示例
- PHP IntlCalendar set()用法及代碼示例
- PHP IntlCalendar after()用法及代碼示例
- PHP IntlCalendar before()用法及代碼示例
- PHP IntlCalendar get()用法及代碼示例
- PHP IntlCalendar roll()用法及代碼示例
- PHP IntlCalendar setTimeZone()用法及代碼示例
- PHP IntlCalendar getAvailableLocales()用法及代碼示例
- PHP IntlCalendar isSet()用法及代碼示例
- PHP IntlCalendar inDaylightTime()用法及代碼示例
- PHP IntlCalendar getTimeZone()用法及代碼示例
- PHP IntlCalendar getLeastMaximum()用法及代碼示例
- PHP IntlCalendar setTime()用法及代碼示例
- PHP IntlCalendar isEquivalentTo()用法及代碼示例
- PHP IntlCalendar toDateTime()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | IntlCalendar isWeekend() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。