当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。