LSTimeFormat()
Formats a time string to a given output using the current locale.
LSTimeFormat( time=any, mask=string, locale=locale, timezone=timezone );
Returns: String
| Argument | Description | Default |
|---|---|---|
|
time
any,
required
|
edit
date object; for example, now() |
|
|
mask
string,
optional
|
edit
Mask that has to be used for formatting. The function follows Java date time mask. For details, see the Java documentation section Date and Time Patterns. |
short |
|
locale
locale,
optional
|
edit
Locale to use instead of the locale of the page when processing the function |
|
|
timezone
timezone,
optional
|
edit
A datetime object is independent of a specific timezone; it is only an offset in milliseconds from The timezone only comes into play when you need specific information like hours in a day, minutes in a hour or which day it is as these calculations depend on the timezone. A timezone must be specified in order to translate the date object to something else. If you do not provide the timezone in the function call, it will default to the timezone specified in the Lucee Administrator (Settings/Regional), or the timezone specified for the current request using the function setTimezone(). You can find a list of all available timezones in the Lucee administrator (Settings/Regional). Some examples of valid timezones include:
|
Examples
edit list = "arabic (united arab emirates),arabic (jordan),hindi(India),arabic (syria),spanish (panama)";
loop list="#list#" index="locale" delimiters="," {
oldlocale = setLocale(locale);
writeOutput("<h3>#locale#</h3>");
writeoutput(lsTimeFormat(now()));writeOutput("<br>");
writeoutput(lsTimeFormat(now(), 'hh:mm:ss'));writeOutput("<br>");
writeoutput(lsTimeFormat(now(), 'hh:mm:sst'));writeOutput("<br>");
writeoutput(lsTimeFormat(now(), 'hh:mm:sstt'));writeOutput("<br>");
writeoutput(lsTimeFormat(now(), 'HH:mm:ss'));
}
See also
- Date and time
- Formatting
- Internationalization
- Strings
- TimeFormat()
- datetime.LSTimeFormat()
- Search Issue Tracker open_in_new
- Search Lucee Test Cases open_in_new (good for further, detailed examples)