如何使用
Lua脚本获取当前的UTC时间并将其转换为人类可读的文本?
尝试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))