Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能告诉我如何使用 Lua 以 'YYYY-MM-DD' 格式获取前一天的日期?
IE,一个片段,它将从它运行的那一天返回前一天的日期。
尝试
print(os.date("%Y-%m-%d",os.time()-24*60*60))
严格来说,这只能保证在 POSIX 系统上工作,但它可能在大多数系统中工作。
有一个库 LuaDate 对日期操作非常有帮助 http://luaforge.net/projects/date/
它非常易于使用,因为它有很好的文档记录!