获取上个月总天数: osdate("%d",ostime({year=osdate("%Y"),month=osdate("%m"),day=0}))
获取本月总天数: osdate("%d",ostime({year=osdate("%Y"),month=osdate("%m")+1,day=0}))
使用数据库或是文件
数据库的话 还需要支持 文件略容易
写时间
------------------------------
local file = ioopen("logtxt","w")
file:write(ostime())
file:close()
读时间
-----------------------------
local file = ioopen("logtxt","r")
str = file:read("a")
print(str)
代码没运行过 看看有没错
以上就是关于Lua 获取月份的总天数全部的内容,包括:Lua 获取月份的总天数、lua如何保存一个时间,下次上线仍然可获取该值、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)