OsUnixTimeToTimestamp
From OpenSimulator
(Difference between revisions)
m |
|||
Line 1: | Line 1: | ||
− | + | {| width="100%" style="border: thin solid black" | |
− | ''' | + | | colspan="2" align="center" style=background:orange | '''{{SUBPAGENAME}}''' |
− | '''Threat Level | + | |- valign="top" |
+ | |'''Threat Level''' || VeryLow | ||
− | + | |- valign="top" | |
− | + | |'''Function Syntax''' || <source lang="lsl"> | |
− | + | osUnixTimeToTimestamp(integer epoch); | |
− | + | </source> | |
− | + | |- valign="top" | |
− | <source lang="lsl"> | + | |'''Example(s)||<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 22: | Line 23: | ||
</source> | </source> | ||
+ | |} | ||
+ | |||
+ | 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. | ||
− | [[Category:OSSL | + | [[Category:OSSL Functions]] |
− | + |
Revision as of 11:40, 11 June 2011
OsUnixTimeToTimestamp | |
Threat Level | VeryLow |
Function Syntax | osUnixTimeToTimestamp(integer epoch); |
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())); } } |
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.