OsUnixTimeToTimestamp

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
Line 1: Line 1:
{| width="100%" style="border: thin solid black"
+
{{osslfunc|
| colspan="2" align="center" style=background:orange | '''{{SUBPAGENAME}}'''
+
threat_level = VeryLow
|- valign="top"
+
|
|'''Threat Level''' || VeryLow
+
function_syntax = <source lang="lsl">
 
+
|- valign="top"
+
|'''Function Syntax''' || <source lang="lsl">
+
 
osUnixTimeToTimestamp(integer epoch);
 
osUnixTimeToTimestamp(integer epoch);
 
</source>
 
</source>
|- valign="top"
+
|
|'''Example(s)||<source lang="lsl">
+
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 22: Line 19:
 
}
 
}
 
</source>
 
</source>
 
+
|  
|}
+
additional_info = 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.
+
}}
 
+
[[Category:OSSL Functions]]
+

Revision as of 17:57, 12 June 2011

osUnixTimeToTimestamp(integer epoch);
No descriptions provided
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()));
    }
}
Notes
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.
Personal tools
General
About This Wiki