OsUnixTimeToTimestamp
From OpenSimulator
(Difference between revisions)
Line 1: | Line 1: | ||
'''Function Syntax:''' osUnixTimeToTimestamp(integer epoch);<br> | '''Function Syntax:''' osUnixTimeToTimestamp(integer epoch);<br> | ||
− | '''Returns:''' string | + | '''Returns:''' string |
+ | '''Function Threat Level:''' VeryLow | ||
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. | 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 01:59, 17 November 2010
Function Syntax: osUnixTimeToTimestamp(integer epoch);
Returns: string
Function Threat Level: VeryLow
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.
Example:
// 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())); } }