创建日期对象。
date_time_create() => object
日期对象有下列属性:
- year 年 (读写)
- month 月 (读写)
- day 日 (读写)
- hour 时 (读写)
- minute 分 (读写)
- second 秒 (读写)
- wday 周几 (只读)
转成相对于 00:00:00 UTC on 1 January 1970 的秒数。
date_time_to_time(dt) => uint64_t
将相对于 00:00:00 UTC on 1 January 1970 的秒数转成成 date time。
date_time_from_time(dt, time) => bool
把 date time 中的时间设置为系统时间。
date_time_set(dt) => bool
需要有设置系统时间的权限。
获取当前时间戳函数 (s)。
time_now() => uint64_t
获取当前时间戳函数 (ms)。
time_now_ms() => uint64_t
获取当前时间戳函数 (us)。
time_now_us() => uint64_t
判断指定年份是否是闰年。
is_leap_year(year) => bool
获取指定年月的天数。
get_days_of_month(year, month) => uint32_t
dt = date_time_create()
print(dt.year, "-", dt.month, "-", dt.day, " ", dt.hour, ":", dt.minute, ":", dt.second, "(", dt.wday, ")")
dt.year = 2022
dt.month = 10
dt.day = 1
dt.hour = 2
dt.minute = 3
dt.second = 4
assert(dt.year == 2022)
assert(dt.month == 10)
assert(dt.day == 1)
assert(dt.hour == 2)
assert(dt.minute == 3)
assert(dt.second == 4)
print(dt.year, "-", dt.month, "-", dt.day, " ", dt.hour, ":", dt.minute, ":", dt.second, "(", dt.wday, ")")
assert(date_time_to_time(dt) == 1664560984)
assert(date_time_from_time(dt, 1664560985))
assert(dt.year == 2022)
assert(dt.month == 10)
assert(dt.day == 1)
assert(dt.hour == 2)
assert(dt.minute == 3)
assert(dt.second == 5)
print(time_now_us())
print(time_now_ms())
print(time_now_s())