Minute()
Extracts the minute value from a date/time object in the range 0-59.
Minute( date=datetime, timezone=timezone );
Returns: Number
Argument | Description |
---|---|
date
datetime,
required
|
date object; for example, |
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
<cfoutput>
It is minute #minute(Now(), "Australia/Sydney")# of the day in Sydney.
</cfoutput>
See also
- Date and time
- datetime.minute()
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)