OsUnixTimeToTimestamp

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
 
(12 intermediate revisions by 4 users not shown)
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"
+
|permissions=true
|'''Threat Level''' || VeryLow
+
|delay=0
 +
|additional_info=This function was added in 0.7.2-post-fixes
 +
|function_syntax=string osUnixTimeToTimestamp(integer epoch);
 +
|description=This function allows an input Unix time to be converted to an llGetTimeStamp() format.
  
|- valign="top"
+
Please note that there will be no second fractions.
|'''Function Syntax''' || <source lang="lsl">
+
 
osUnixTimeToTimestamp(integer epoch);
+
This is because the implementation works with seconds only.
</source>
+
|ossl_example=<source lang="lsl">
|- valign="top"
+
//
|'''Example(s)||<source lang="lsl">
+
// osUnixTimeToTimestamp Script Example
// prints something similar to this:
+
// Author: djphil
// [01:08] Primitive: 2010-11-13T09:08:53.6472090Z
+
//
// [01:08] Primitive: 2010-11-13T09:08:53.0000000Z
+
 
default
 
default
 
{
 
{
 
     state_entry()
 
     state_entry()
 
     {
 
     {
         llOwnerSay(llGetTimestamp());
+
         llSay(PUBLIC_CHANNEL, "Touch to see osUnixTimeToTimestamp usage.");
        llOwnerSay(osUnixTimeToTimestamp((integer)llGetUnixTime()));
+
    }
 +
 +
    touch_start(integer number)
 +
    {
 +
        integer epoch = llGetUnixTime();
 +
        llSay(PUBLIC_CHANNEL, "Clicked at " + osUnixTimeToTimestamp(epoch));
 
     }
 
     }
 
}
 
}
 
</source>
 
</source>
 
+
|additional_info=
|}
+
}}
 
+
== See Also ==
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.
+
* [[osGetPSTWallclock]]
 
+
* [[osUnixTimeToTimestamp]]
[[Category:OSSL Functions]]
+

Latest revision as of 01:15, 2 January 2021

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)
//
// osUnixTimeToTimestamp Script Example
// Author: djphil
//
 
default
{
    state_entry()
    {
        llSay(PUBLIC_CHANNEL, "Touch to see osUnixTimeToTimestamp usage.");
    }
 
    touch_start(integer number)
    {
        integer epoch = llGetUnixTime();
        llSay(PUBLIC_CHANNEL, "Clicked at " + osUnixTimeToTimestamp(epoch));
    }
}


[edit] See Also

Personal tools
General
About This Wiki