当前位置 : 主页 > 网络编程 > lua >

datetime – 在Lua,在考虑夏令时时如何获得纽约时间?

来源:互联网 收集:自由互联 发布时间:2021-06-23
我想通过Lua中的代码来获取纽约时间(与当地时间不同): local utc_t = os.date("!*t", os.time())local tzoffset = -1 * 5 * 60 * 60 -- EST is -05:00 from UTClocal est_t = os.date("*t", os.time(utc_t) + tzoffset) 但是,对于纽
我想通过Lua中的代码来获取纽约时间(与当地时间不同):

local utc_t = os.date("!*t", os.time())
local tzoffset = -1 * 5 * 60 * 60   -- EST is -05:00 from UTC
local est_t = os.date("*t", os.time(utc_t) + tzoffset)

但是,对于纽约,有夏令时(并且每年进入/退出夏令时的日期不同).

当它在夏令时时,它是EDT(UTC的-04:00).

有什么方法可以在任何特定时间在任何当地时区获得正确的纽约时间吗?

使用luatz库.具体来说,使用函数time_in(timezone_name).

您可以将其安装为摇滚或抓取源.有关详细信息,请参见https://rocks.moonscript.org/modules/daurnimator/luatz.

网友评论