ParseDateTime()
Parses a date/time string according to the English (U.S.) locale conventions.
(To format a date/time string for other locales, use the LSParseDateTime() function.)
ParseDateTime( date=object, format=string, timezone=timezone );
Returns: DateTime
Argument | Description |
---|---|
date
object,
required
|
A string containing a date/time value formatted according to U.S. locale conventions. |
format
string,
optional
|
Mask that has to be used for formatting. the following characters are pattern letters (case sensitive) representing the components of a datetime string. All other characters are not interpreted
The following masks can be used to format the full date and time and may not be combined with other masks:
Alias: popConversion |
timezone
timezone,
optional
|
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
datetime = dateTimeFormat(now(), "yyyy.MM.dd HH:nn:ss");
dump(ParseDateTime(datetime));
See also
- Date and time
- Parsing
- Strings
- LSParseDateTime()
- string.parseDateTime()
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)