如何使用 Lua 脚本获取当前的 UTC 时间并将其转换为人类可读的文本?
问问题
15766 次
1 回答
22
试试os.date("!%c")
。这里!
表示 UTC,%c
表示标准格式的完整日期。有关其他选项,请参阅http://www.lua.org/manual/5.2/manual.html#pdf-os.date。
curTime = os.time(); print("os.date(): "..os.date('%Y-%m-%d-%H:%M:%S', curTime));
print("os.date(!): "..os.date('!%Y-%m-%d-%H:%M:%S GMT', curTime))
于 2013-09-24T16:44:47.263 回答