博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Lua date format
阅读量:6841 次
发布时间:2019-06-26

本文共 326 字,大约阅读时间需要 1 分钟。

网上有比较复杂的方法:

 

写了一个非常简单的代码

1: function formatDate(seconds, dateformat)
2:     --http://wiki.interfaceware.com/569.html
3:     seconds = tonumber(seconds)
4:     dateformat = dateformat or "%Y-%m-%d %H:%M:%S"
5:
6:     return os.date(dateformat, seconds)
7: end

格式化的参数可查看这里:

转载于:https://www.cnblogs.com/meteoric_cry/p/3286010.html

你可能感兴趣的文章