OsUnixTimeToTimestamp

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(new function documentation)
 
m (Added note stating which version of OpenSim introduced this function)
(11 intermediate revisions by 4 users not shown)
Line 1: Line 1:
'''Function Syntax:''' osUnixTimeToTimestamp(integer epoch);<br>
+
{{osslfunc
'''Returns:''' string
+
|threat_level=VeryLow
 
+
|permissions=true
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.
+
|delay=0
 
+
|additional_info=This function was added in 0.7.2-post-fixes
 
+
|function_syntax=string osUnixTimeToTimestamp(integer epoch);
Example:<br>
+
|ossl_example=<source lang="lsl">
 
+
<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 16: Line 14:
 
     {
 
     {
 
         llOwnerSay(llGetTimestamp());
 
         llOwnerSay(llGetTimestamp());
         llOwnerSay(osEpochToString((integer)llGetUnixTime()));
+
         llOwnerSay(osUnixTimeToTimestamp((integer)llGetUnixTime()));
 
     }
 
     }
 
}
 
}
 
</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 08:53, 15 October 2018

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)
// 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()));
    }
}
Notes
This function was added in 0.7.2-post-fixes
Personal tools
General
About This Wiki