Difference between revisions of "NXSL:localtime"
Jump to navigation
Jump to search
(Created page with "Converts time in UNIX format (number of seconds since epoch) to calendar date and time broken down into its components. Function uses either time given in time argument or cur...") |
|||
Line 1: | Line 1: | ||
<syntaxhighlight>localtime([time])</syntaxhighlight> | |||
Converts time in UNIX format (number of seconds since epoch) to calendar date and time broken down into its components. Function uses either time given in time argument or current time if time is omitted. Return value is an object of class TIME with the following attributes: | Converts time in UNIX format (number of seconds since epoch) to calendar date and time broken down into its components. Function uses either time given in time argument or current time if time is omitted. Return value is an object of class TIME with the following attributes: | ||
{| class="wikitable" | {| class="wikitable" | ||
Line 24: | Line 26: | ||
== Examples == | == Examples == | ||
<syntaxhighlight>localtime(time())->year | <syntaxhighlight>localtime(time())->year</syntaxhighlight> | ||
Result: 2012 (integer) | |||
Equivalent: | |||
<syntaxhighlight>localtime()->year</syntaxhighlight> | |||
Result: 2012 | Result: 2012 (integer) |
Revision as of 08:11, 18 April 2012
localtime([time])
Converts time in UNIX format (number of seconds since epoch) to calendar date and time broken down into its components. Function uses either time given in time argument or current time if time is omitted. Return value is an object of class TIME with the following attributes:
Attribute | Synonym | Meaning |
---|---|---|
sec | tm_sec | Seconds after the minute |
min | tm_min | Minutes after the hour |
hour | tm_hour | Hours since midnight |
mday | tm_mday | Day of the month |
mon | tm_mon | Months since January |
year | tm_year | Year |
wday | tm_wday | Days since Sunday |
yday | tm_yday | Days since January 1 |
isdst | tm_isdst | Daylight Saving Time flag |
Examples
localtime(time())->year
Result: 2012 (integer)
Equivalent:
localtime()->year
Result: 2012 (integer)