OsUnixTimeToTimestamp
From OpenSimulator
(Difference between revisions)
m (some format conversions) |
|||
Line 1: | Line 1: | ||
− | {{osslfunc | + | {{osslfunc |
− | threat_level = VeryLow | + | |threat_level=VeryLow |
− | | | + | |function_syntax=osUnixTimeToTimestamp(integer epoch); |
− | function_syntax = | + | |ossl_example=<source lang="lsl"> |
− | osUnixTimeToTimestamp(integer epoch); | + | |
− | + | ||
− | | | + | |
− | ossl_example = <source lang="lsl"> | + | |
// prints something similar to this: | // prints something similar to this: | ||
// [01:08] Primitive: 2010-11-13T09:08:53.6472090Z | // [01:08] Primitive: 2010-11-13T09:08:53.6472090Z | ||
Line 19: | Line 15: | ||
} | } | ||
</source> | </source> | ||
− | | | + | |description=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. |
− | + | ||
| | | | ||
}} | }} |
Revision as of 20:42, 1 July 2011
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 | No permissions specified |
Extra Delay | No function delay specified |
Example(s) | |
// prints something similar to this: // [01:08] Primitive: 2010-11-13T09:08:53.6472090Z // [01:08] Primitive: 2010-11-13T09:08:53.0000000Z default { state_entry() { llOwnerSay(llGetTimestamp()); llOwnerSay(osUnixTimeToTimestamp((integer)llGetUnixTime())); } } |