欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php cal_days_in_month函数怎么用

程序员文章站 2022-03-08 19:42:34
...
php cal_days_in_month函数用于对指定的年份和历法,返回一个月中的天数,其语法是cal_days_in_month(calendar,month,year)。

php cal_days_in_month函数怎么用

php cal_days_in_month函数怎么用?

定义和用法

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

语法

cal_days_in_month(calendar,month,year);

参数

calendar 必需。规定要使用的历法。请参阅 PHP Calendar 常量。

month 必需。规定选定历法中的月。

year 必需。规定选定历法中的年。

返回值: 针对给定的年份和历法,返回选定月份中的天数。

PHP 版本: 4.1+

实例

针对指定的年份和历法,获取一个月中的天数:

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

以上就是php cal_days_in_month函数怎么用的详细内容,更多请关注其它相关文章!