daysInMonth

Determines the number of days in a month.

daysInMonth(date) → returns numeric

Member Function Syntax

date.daysInMonth()

Argument Reference

date date
Required

Date or datetime object (100AD-9999AD).
When passing a datetime object as a string, enclose it in quotation marks, otherwise, it is interpreted as a numeric representation of a datetime object.

Compatibility

ColdFusion:

Member function is available in CF11+.

Lucee:

Lucee allows an optional timezone parameter. Member function is available in Lucee4.5+.

Examples
Sample code invoking the daysInMonth function

Uses the daysInMonth function to determine the number of days in a month

<cfset Date = CreateDate(2012, 12, 30)>
<cfset result = daysInMonth(Date)>
<cfoutput>#result#</cfoutput>

Expected Result: 31

To determine the number of days in a month

<cfset Date = CreateDate(2012, 02, 03)>
<cfset result = daysInMonth(Date)>
<cfoutput>#result#</cfoutput>

Expected Result: 29

Signup for cfbreak to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.

Fork me on GitHub