Chapter 2: ColdFusion Functions
313
CreateTimeSpan
Creates a date/time object for adding and subtracting other date/time objects.
See also
CreateDateTime
,
DateAdd
, and
DateConvert
.
Syntax
CreateTimeSpan
(
days, hours, minutes, seconds)
days
Number representing the number of days.
hours
Number representing the number of hours.
minutes
Number representing the number of minutes.
seconds
Number representing the number of seconds.
Usage
The CreateTimeSpan function creates a special date/time object that should only be
used to add and subtract from other date/time objects or with the
CFQUERY
CACHEDWITHIN attribute.
Examples
<!--- This example shows how to CreateTimeSpan --->
...
<CFIF IsDefined("FORM.year")>
<!--- set variables for the date and for the time span --->
<CFSET yourDate = CreateDateTime(FORM.year, FORM.month, FORM.day,
FORM.hour, FORM.minute, FORM.second)>
<CFSET yourTimeSpan = CreateTimeSpan(FORM.tsday,
FORM.tshour, FORM.tsminute, FORM.tssecond)>
<CFOUTPUT>
<P>Your original date value: #yourDate#
<P>The date of your timespan, formatted:
<!--- output the results of the form --->
<P>#yourTimeSpan# days <CFIF yourTimeSpan LTE 0>before
your<CFELSE>after your</CFIF> original date:
<BR>#DateFormat(yo yourTimeSpan)#
#TimeFormat(yo yourTimeSpan)#
</CFOUTPUT>
</CFIF>
...
Summary of Contents for COLDFUSION 4.5-CFML LANGUAGE
Page 1: ...Allaire Corporation CFML Language Reference ColdFusion 4 5...
Page 207: ...Chapter 1 ColdFusion Tags 183 CFCATCH CFTRY BODY HTML...
Page 224: ...200 CFMLLanguageReference CFOUTPUT P Text within CFOUTPUT is always shown CFOUTPUT BODY HTML...
Page 336: ...312 CFMLLanguageReference CFIF BODY HTML...
Page 404: ...380 CFMLLanguageReference DE It is morning CFOUTPUT P BODY HTML...
Page 413: ...Chapter 2 ColdFusion Functions 389 Customer BalanceDue BR CFOUTPUT CFIF BODY HTML...
Page 483: ...Chapter 2 ColdFusion Functions 459 CFOUTPUT CFLOOP BODY HTML...
Page 584: ...560 CFMLLanguageReference...
Page 594: ...570 CFMLLanguageReference...