目录

PHP cal_days_in_month() 函数

❮ PHP 日历参考

示例

获取指定年份和日历的一个月中的天数:

<?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);

参数值

Parameter Description
calendar Required. Specifies the calendar to use. Look at the PHP Calendar Constants
month Required. Specifies the month in the selected calendar
year Required. Specifies the year in the selected calendar

技术细节

返回值: 给定年份和日历中选定月份的天数
PHP 版本: 4.1+

❮ PHP 日历参考