quarter

Calculates the quarter of the year in which a date falls.

quarter(date) → returns numeric

Member Function Syntax

date.quarter()

Argument Reference

date date
Required

Compatibility

ColdFusion:

Member function is available in CF11+.

Lucee:

Member function is available in Lucee4.5+.

Examples
Sample code invoking the quarter function

dt = createdatetime(2016,1,1,5,30,25);
q = quarter( dt );
writeoutput( q );

Expected Result: 1

Signup for cfbreak to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.

Fork me on GitHub