ToMillis
This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics. |
ToMillis( value )
to_millis( value )
ToMillis( value )
ToMillis( value )
ToMillis( value )
ToMillis( value )
Description
The ToMillis
function converts a value to the number of milliseconds
since Unix epoch (midnight, January 1, 1970), if possible.
Attempting to convert a value to a number of milliseconds which has no numeric representation results in an "invalid argument" error.
Parameters
Parameter | Type | Definition and Requirements |
---|---|---|
|
Any |
The value to attempt to convert to a number of milliseconds since Unix epoch. If you provide a Number, it is interpreted as the number of microseconds since Unix epoch. |
Examples
The following query calls ToMillis
twice:
-
To convert 1 second after Unix epoch into milliseconds.
-
To convert the current transaction time into milliseconds.
[ 1000, 1594038896789 ]
[1000, 1594038896789]
[1000 1594038896789]
Arr(LongV(1000), LongV(1594038896789))
[1000, 1594038896789]
[ 1000, 1594038896789 ]