如何使用Lua获取当前系统时区

问题描述 投票:1回答:2

如何使用Lua获取当前系统的时区。 (美国/山区)。我正在使用Linux操作系统。我需要知道如何获得像Linux(美国/山区,亚洲/孟买)这样的Linux系统。如何为此编写代码

lua lua-table
2个回答
2
投票

你可以使用luarocks luatz包:

$ luarocks install luatz

然后

> luatz = require("luatz")
> now = luatz.time()
> new_york = luatz.time_in('America/New_York', now)
> print(luatz.timetable.new_from_timestamp(new_york))
2019-03-25T16:19:43.696
> paris = luatz.time_in('Europe/Paris', now)
> print(luatz.timetable.new_from_timestamp(paris))
2019-03-25T21:19:43.696

该库的功能有限,无法返回有关时区的信息:

> america_new_york = luatz.get_tz('America/New_York')
> for key,val in pairs(america_new_york:find_current(now)) do print(key,val) end
abbrind 4
isstd   false
isdst   true
isgmt   false
gmtoff  -14400
abbr    EDT
> europe_paris = luatz.get_tz('Europe/Paris')
> for key,val in pairs(europe_paris:find_current(now)) do print(key,val) end
abbrind 17
isstd   true
isdst   false
isgmt   true
gmtoff  3600
abbr    CET

要查询当前系统时区,请使用不带参数的luatz.get_tz()。我没有看到任何获得Olson时区名称的方法,但您可以获得一些数据

> now = luatz.time()
> mytz = luatz.get_tz()
> mytz_info = mytz:find_current(now)
> mytz_info.abbr
EDT
> mytz_info.gmtoff
-14400
> mytz_info.isdst
true

1
投票

print( os.date('%m/%d/%y %H:%M:%S %z',t0)) = 03/25/19 10:57:29 Pacific Daylight Time我在美国华盛顿州的西雅图。

%z为您提供时区,这可能足以满足您的需求,但请注意:

不能使用os.date(“%z”),因为其返回值的格式是不可移植的;特别是,Windows系统不对strftime()使用C99语义。 - http://lua-users.org/wiki/TimeZone

或者,您可以执行以下操作以确定偏移的实际值:

local function get_timezone_offset(ts)
    local utcdate   = os.date("!*t", ts)
    local localdate = os.date("*t", ts)
    localdate.isdst = false -- this is the trick
    return os.difftime(os.time(localdate), os.time(utcdate))
end

资源:lua-users: Time Zone

© www.soinside.com 2019 - 2024. All rights reserved.