Returns the current value of an internal millisecond timer.
A string representation of the system time, in milliseconds.
Date and time functions, System functions
GetTickCount() |
This function is useful for timing CFML code segments or other page processing elements. The value of the counter has no meaning. To generate useful timing values, take the difference between the results of two GetTickCount calls.
<cfscript>
SystemTime = GetTickCount();
writeOutput("System time in milliseconds is: " & SystemTime)
</cfscript>
Output
System time in milliseconds is: 1541480358756
Sign in to your account