扫码一下
查看教程更方便
针对指定的年份和历法,获取一个月中的天数:
<?php
$d=cal_days_in_month(CAL_GREGORIAN,10,2005);
echo "There was $d days in October 2005";
?>
执行结果
There was 28 days in February 1965.
There was 29 days in February 2004.
cal_days_in_month() 函数针对指定的年份和历法,返回一个月中的天数。
cal_days_in_month(calendar,month,year);
参数 | 描述 |
---|---|
calendar | 必需。规定要使用的历法。请参阅 PHP Calendar 常量。 |
month | 必需。规定选定历法中的月。 |
year | 必需。规定选定历法中的年。 |