cal_days_in_month
cal_days_in_month
(PHP 4 >= 4.1.0, PHP 5, PHP 7)
cal_days_in_month - 返回给定年份和日历的一个月中的天数
描述
int cal_days_in_month ( int $calendar , int $month , int $year )
这个函数会返回到这个天数month
的year
指定的calendar
。
参数
calendar
用于计算的日历
month
所选日历中的月份
year
所选日历中的年份
返回值
给定日历中选定月份的天数
例子
示例 #1 cal_days_in_month() example
<?php
$number = cal_days_in_month(CAL_GREGORIAN, 8, 2003 // 31
echo "There were {$number} days in August 2003";
?>
cal_from_jd →