例
获取在一个月内给定年和日历天数:
<?php
$d=cal_days_in_month(CAL_GREGORIAN,10,2005);
echo "There was $d days in
October 2005";
?>
运行示例» 定义和用法
该cal_days_in_month()函数返回的天数在一个月内给定年和日历。
句法
cal_days_in_month( calendar,month,year);
参数 | 描述 |
---|---|
calendar | 需要。 指定要使用的日历。 看看PHP日历常量 |
month | 需要。 指定在选定的日历月 |
year | 需要。 指定在选定的日历年 |
技术细节
返回值: | 天于所选月份,在给定的年份和日历,数 |
---|---|
PHP版本: | 4.1+ |
<PHP日历引用