OsUnixTimeToTimestamp
From OpenSimulator
(Difference between revisions)
m (Added note stating which version of OpenSim introduced this function) |
m (Cosmetic) |
||
Line 6: | Line 6: | ||
|function_syntax=string osUnixTimeToTimestamp(integer epoch); | |function_syntax=string osUnixTimeToTimestamp(integer epoch); | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> | ||
− | // | + | // |
− | // [01: | + | // osUnixTimeToTimestamp Script Example |
− | // [01: | + | // |
+ | |||
+ | // Prints something similar to this: | ||
+ | // [01:00] Object: 2020-11-24T22:32:29.3743203Z | ||
+ | // [01:00] Object: 2020-11-24T22:32:29.0000000Z | ||
+ | |||
default | default | ||
{ | { |
Revision as of 14:34, 24 November 2020
string osUnixTimeToTimestamp(integer epoch);
| |
This function allows an input Unix time to be converted to an llGetTimeStamp() format. Please note that there will be no second fractions. This is because the implementation works with seconds only. | |
Threat Level | VeryLow |
Permissions | Use of this function is always allowed by default |
Extra Delay | 0 seconds |
Example(s) | |
// // osUnixTimeToTimestamp Script Example // // Prints something similar to this: // [01:00] Object: 2020-11-24T22:32:29.3743203Z // [01:00] Object: 2020-11-24T22:32:29.0000000Z default { state_entry() { llOwnerSay(llGetTimestamp()); llOwnerSay(osUnixTimeToTimestamp((integer)llGetUnixTime())); } } | |
Notes | |
This function was added in 0.7.2-post-fixes |