Minute

Description

Returns the ordinal for the minute, in the range 0-59.

Category

Date and time functions

Syntax

Minute(date) 

See also

DatePart, Hash, Second

Parameters

Parameter
Description
date
A date/time object.

Usage

Year values 0 - 29 are interpreted as 21st century dates. Year values 30 - 99 are interpreted as 20th century dates.

When passing a date/time value as a string, enclose it in quotes. Otherwise, it is interpreted as a number representation of a date/time object.

Example

<!--- This example shows the use of Hour, Minute, and Second --->
<html>
<head>
<title>
Minute Example
</title>
</head>

<body bgcolor = silver>
<H3>Minute Example</H3>

<cfoutput>
The time is currently #TimeFormat(Now())#.
We are in hour #Hour(Now())#, Minute #Minute(Now())#
and Second #Second(Now())# of the day.
</cfoutput>

</body>
</html>