16 lines
283 B
Plaintext
16 lines
283 B
Plaintext
:sig
|
|
u64 time()
|
|
|
|
:params
|
|
return value : second-accurate current Unix timestamp
|
|
|
|
:desc
|
|
Returns a 64 bit integer containing the current Unix timestamp.
|
|
|
|
:see
|
|
>time
|
|
|
|
:related
|
|
**PHP:** `time()`
|
|
**JavaScript / Node.js:** `Math.floor(Date.now() / 1000)` or `Date.now()` depending on units
|