Lua - 时间

 获取当前时间戳

local now = os.time()

 时间戳转换为时间字符串


local str = os.date("%Y/%m/%d %H:%M:%S", now)    --now:时间戳

你可能感兴趣的:(Lua,lua)