DatePart()
Extracts the given date part from the date object.
DatePart( datePart=string, date=datetime, timezone=timezone );
Returns: Number
| Argument | Description |
|---|---|
|
datePart
string,
required
|
edit
Date part type:
Alias: part |
|
date
datetime,
required
|
edit
date object; for example, now() |
|
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 writeOutput("Date for the current date is"&datePart("d",now()));
d1=CreateDate(2016, 11, 10);//user defined date with member function
writeOutput("<br>Month of the given date is "&d1.Part('m','Asia/Calcutta'));
See also
- Date and time
- datetime.part()
- Search Issue Tracker open_in_new
- Search Lucee Test Cases open_in_new (good for further, detailed examples)