Whatever message this page gives is out now! Go check it out!
setSecond(second)Parameter | Description |
second | Required. An integer representing the seconds. Expected values are 0-59, but other values are allowed:
|
<cfscript>
myDate=now();
WriteOutput(myDate.setSecond(55) & "<br/>");
WriteOutput(myDate.setSecond(-1) & "<br/>");
WriteOutput(myDate.setSecond(60) & "<br/>");
</cfscript>