Determines the day of the week, in a date, as a string function.
The day of the week, as a string in the current locale, that corresponds to day_of_week.
Date and time functions, String functions
DayOfWeekAsString(dayofweek [, locale])
Day, DayOfWeek, DayOfYear, DaysInMonth, DaysInYear, FirstDayOfMonth
ColdFusion (2018 release): Renamed parameter day_of_week to dayofweek.
ColdFusion 8: Added the locale parameter.
ColdFusion MX 7: Changed behavior. The returned string is now in the language of the current locale.
Parameter |
Description |
|---|---|
dayofweek |
Integer, in the range 1 (Sunday) - 7 (Saturday). |
locale |
Locale to use instead of the locale of the page when processing the function |
The following example shows the use of the DayOfWeekAsString function. It is the action page for a form that submits year, month, and day fields.
<cfscript>
dayArray=[1,2,3,4,5,6,7]
dayOfWeekArray=dayArray.map(function(item){
return DayOfWeekAsString(dayArray[item])
})
writeDump(dayOfWeekArray)
</cfscript>
Output
Sign in to your account