CreateTime
Last updated
Was this helpful?
Creates a time-only datetime object using the epoch date ( 1970-1-1 ) as the date reference.
CreateTime(hour=[integer], minute=[integer], second=[integer], millisecond=[integer], timezone=[string])hour
integer
false
The hour of the date-time object.
0
minute
integer
false
The minute of the date-time object.
0
second
integer
false
The second of the date-time object.
0
millisecond
integer
false
The millisecond of the date-time object.
0
timezone
string
false
The timezone to apply to the date-time object. Defaults to the system default timezone.
<bx:set yourTime = createTime( "5", "24", "56" ) >
<bx:dump var="#yourTime#"/> Last updated
Was this helpful?
Was this helpful?
dump( CreateTime( "12", "57", "30" ) );
