Year


Description

From a date/time object, gets the year value.

Returns

The year value of date.

Category

Date and time functions

Function syntax

Year(date)

See also

DatePartIsLeapYear

Parameters

Parameter

Description

date

A date/time object in the range 100 AD-9999 AD.

Usage

When passing a date as a string, enclose it in quotation marks. Otherwise, it is interpreted as a number representation of a date.

Example

<cfscript>
    myDateTime = now();
    WriteOutput(Year(myDateTime & "<br/>"));
</cfscript>

Output

2018

Adobe logo

Sign in to your account