RosettaCodeData/Task/System-time/ColdFusion/system-time.cfm
2017-09-25 22:28:19 +02:00

11 lines
272 B
Text

<cfscript>
// Date Time
currentTime = Now();
writeOutput( currentTime );
// Epoch
// Credit for Epoch time should go to Ben Nadel
// bennadel.com is his blog
utcDate = dateConvert( "local2utc", currentTime );
writeOutput( utcDate.getTime() );
</cfscript>