= 4.1.0, PHP 5, PHP 7, PHP 8)cal_days_in_month — 返回某個(gè)歷法中某年中某月的天數(shù)說(shuō)明cal_days_in_month(int $calendar, int $month, int $year): in">

cal_days_in_month

(PHP 4 >= 4.1.0, PHP 5, PHP 7, PHP 8)

cal_days_in_month返回某個(gè)歷法中某年中某月的天數(shù)

說(shuō)明

cal_days_in_month(int $calendar, int $month, int $year): int

該函數(shù)返回特定歷法中的某中的某的天數(shù)。

參數(shù)

calendar

用來(lái)計(jì)算的某個(gè)歷法

month

選定歷法中的某月

year

選定歷法中的某年

返回值

指定歷法中選定的某月的天數(shù)。

范例

示例 #1 cal_days_in_month() example

<?php
$num 
cal_days_in_month(CAL_GREGORIAN82003); // 31
echo "There was $num days in August 2003";
?>