17 lines
297 B
Plaintext
17 lines
297 B
Plaintext
:sig
|
|
u64 time()
|
|
|
|
:params
|
|
return value : second-accurate current Unix timestamp
|
|
|
|
:see
|
|
>time
|
|
|
|
:content
|
|
Returns the current Unix timestamp as a 64-bit integer with second precision.
|
|
|
|
Related:
|
|
|
|
- PHP: `time()`
|
|
- JavaScript / Node.js: `Math.floor(Date.now() / 1000)` or `Date.now()` depending on units
|