CreateTimespan()

Creates a CFML time object that represents a time span/range

Usage

NUMERIC = CreateTimespan( day, hour, minute, second )
Argument Summary
day day
hour hour (0-23)
minute minute
second second

Calling

Supports named-parameter calling allowing you to use the function like:

CreateTimespan(
   day=?, 
   hour=?, 
   minute=?, 
   second=?
);

Supports passing parameters as a structure using ArgumentCollection:

CreateTimespan( ArgumentCollection={
   day : ?, 
   hour : ?, 
   minute : ?, 
   second : ?
} );