您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1342 复制当前网址

cal_days_in_month



PHP cal_days_in_month() 函数

定义和用法

cal_days_in_month() 函数针对指定的年份和日历,返回一个月中的天数。


语法

cal_days_in_month(calendar,month,year)

参数描述
calendar必需。规定要使用的历法。
month必须。规定月。
year必须。规定年。


例子

<?php
$d=cal_days_in_month(CAL_GREGORIAN,10,2005);
echo("There was $d days in October 2005");
?>

输出:

There was 31 days in October 2005


文章来源:https://liqingbo.com/blog-517.html

上一篇:cal_from_jd

下一篇:usort

评论