📜  PHP | IntlCalendar isWeekend()函数

📅  最后修改于: 2022-05-13 01:56:34.131000             🧑  作者: Mango

PHP | IntlCalendar isWeekend()函数

IntlCalendar::isWeekend()函数是PHP中的一个内置函数,用于检查给定的日期/时间是否在周末。

句法:

  • 面向对象风格
    bool IntlCalendar::isWeekend( float $date = NULL )
  • 程序风格
    bool intlcal_is_weekend( IntlCalendar $cal, float $date = NULL )

参数:此函数使用上面提到的两个参数,如下所述:

  • $cal:此参数保存 IntlCalendar 对象的资源。
  • $date:此参数包含可选的时间戳,它表示自纪元以来的毫秒数,不包括闰秒。如果此参数的值为 NULL,则它使用当前时间。

返回值:此函数返回布尔值,表示给定时间是否在周末。

下面的程序说明了PHP中的 IntlCalendar::isWeekend()函数:

程序:

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