gpt4 book ai didi

lua - 如何在 Lua 脚本中获取当前的 UTC 时间?

转载 作者:行者123 更新时间:2023-12-04 12:06:53 24 4
gpt4 key购买 nike

如何使用 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))

关于lua - 如何在 Lua 脚本中获取当前的 UTC 时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18982730/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com