mcal_days_in_month

(PHP 3 >= 3.0.13, PHP 4, PECL)

mcal_days_in_month --  Returns the number of days in a month

Description

int mcal_days_in_month ( int month, int leap_year )

mcal_days_in_month() returns the number of days in the month month, taking into account if the considered year is a leap year or not.


add a note add a note User Contributed Notes
tmhesket_AT_BRADFORDdot_ac_DOTuk
15-May-2002 12:13
In case anyone gets confused in the same way I did, the "int leap year" parameter is not for the year itself.

"int leap year" is a boolean indicating whether the year in question is a leap year.

If you have $month and $year, you can find out the number of days easily:

mcal_days_in_month($month, mcal_is_leap_year($year))