Parameter
Formats the time part of a date/time string into a string in a locale-specific format.
A string representing the time value.
LSTimeFormat(time [, mask, locale ])
LSParseDateTime, LSDateFormat, TimeFormat; Locales in the Developing ColdFusion Applications
ColdFusion (2016 release) Update 3: The time displayed is in the format hh:mm:ss. See Example 2.
ColdFusion MX 6.1: Added the mask character L or l to represent milliseconds.
ColdFusion MX:
|
Parameter |
Description |
|---|---|
|
time |
|
|
mask |
Masking characters that determine the format:
|
|
locale |
Locale to be used. |
This function uses Java standard locale formatting rules on all platforms. When passing date/time value as a string, enclose it in quotation marks. Otherwise, it is interpreted as a number representation of a date/time object.To calculate a difference between time zones, use the GetTimeZoneInfo function. To set the default display format of date, time, number, and currency values, use the SetLocale function. If no seconds value is passed to this function, and the mask value is s, the default output seconds format is one zero; for example, lstimeformat(6:39, "h:m:s") returns 6:39:0. If the mask value is ss, it returns 6:39:00.
<cfscript> myDateTime=CreateDateTime(2016,9,16,18,45,26); Writeoutput(LSTimeFormat(myDateTime)); // displays 6:45:26 PM </cfscript>
Output
6:45:26 PM
Sign in to your account