Difference between revisions of "NXSL:TIME"
Jump to navigation
Jump to search
(Created page with "Class containing a calendar date and time broken down into its components. For convenience, all attributes has synonyms named after C [http://www.cplusplus.com/reference/clibr...") |
m (Text replacement - "^" to "{{deprecated}}") |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
Class containing a calendar date and time broken down into its components. For convenience, all attributes has synonyms named after C [http://www.cplusplus.com/reference/clibrary/ctime/tm/ struct tm]. | {{deprecated}}Class containing a calendar date and time broken down into its components. For convenience, all attributes has synonyms named after C [http://www.cplusplus.com/reference/clibrary/ctime/tm/ struct tm]. | ||
Line 31: | Line 31: | ||
| isdst || tm_isdst || int32 || Daylight Saving Time flag | | isdst || tm_isdst || int32 || Daylight Saving Time flag | ||
|} | |} | ||
[[Category:NXSL Class Reference]] |
Latest revision as of 16:13, 13 September 2022
This Wiki is deprecated and we are are currrently migrating remaining pages into product documentation (Admin Guide, NXSL Guide) |
Class containing a calendar date and time broken down into its components. For convenience, all attributes has synonyms named after C struct tm.
Class Name
TIME
Attributes
Name | Synonym | Type | Description |
---|---|---|---|
sec | tm_sec | int32 | Seconds after the minute |
min | tm_min | int32 | Minutes after the hour |
hour | tm_hour | int32 | Hours since midnight |
mday | tm_mday | int32 | Day of the month |
mon | tm_mon | int32 | Months since January |
year | tm_year | int32 | Year |
wday | tm_wday | int32 | Days since Sunday |
yday | tm_yday | int32 | Days since January 1 |
isdst | tm_isdst | int32 | Daylight Saving Time flag |