Determines the day of the month, in a date. The ordinal for the day of the month, ranging from 1 to 31.
day(date)
returns numeric
date.day()
Name | Type | Required | Default | Description |
---|---|---|---|---|
date | date | Yes | 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. |
Uses the day function to determine the day of the month
<cfset Date = CreateDate(2010, 09, 08)>
<cfset result = day(Date)>
<cfoutput>#result#</cfoutput>
Returns the day from a datetime object
createDate( 2022, 10, 1 ).day();