Createtime - MACROMEDIA COLDFUSION MX 61-CFML Reference

Cfml reference
Hide thumbs Also See for COLDFUSION MX 61-CFML:
Table of Contents

Advertisement

CreateTime

Description
Creates a time variable.
Returns
A time variable.
Category
Date and time functions
Function syntax
CreateTime(hour, minute, second)
See also
CreateODBCTime,
Parameters
Parameter
hour
minute
second
Usage
is a subset of
CreateTime
A time variable is a special case of a date/time variable. The date part of a time variable is set to
December 30, 1899.
Example
<h3>CreateTime Example</h3>
<cfif IsDefined("FORM.hour")>
Your time value, presented using CreateTime time function:
<cfset yourTime = CreateTime(FORM.hour, FORM.minute, FORM.second)>
<cfoutput><ul>
<li>Formatted with timeFormat: #TimeFormat(yourTime)#
<li>Formatted with timeFormat and hh:mm:ss: #TimeFormat(yourTime,
'hh:mm:ss')#
</ul></cfoutput>
</cfif>
<CFFORM action="createtime.cfm" METHOD="post">
<PRE>Hour<CFINPUT TYPE="Text" NAME="hour" VALUE="16" RANGE="0,23"
MESSAGE="You must enter an hour (0-23)" VALIDATE="integer" REQUIRED="Yes">
Minute <cfinput type="text" name="minute" value="12" range="0,59"
MESSAGE="You must enter a minute value (0-59)" VALIDATE="integer"
REQUIRED="Yes">
Second <cfinput type="text" name="second" value="0" range="0,59"
MESSAGE="You must enter a value for seconds (0-59)" VALIDATE="integer"
REQUIRED="Yes">
</PRE>
<p><input type="submit" name=""> <input type="reset">
</cfform>
CreateDateTime
Description
Number in the range 0–23
Number in the range 0–59
Number in the range 0–59
CreateDateTime
.
CreateTime
435

Advertisement

Table of Contents
loading

This manual is also suitable for:

Coldfusion mx

Table of Contents