local getTime = os.date("%c");
其中的%c可以是以下的一种:(注意大小写)
%a | abbreviated weekday name (e.g.,Wed) | |
%A | full weekday name (e.g.,Wednesday) | |
%b | abbreviated month name (e.g.,Sep) | |
%B | full month name (e.g.,September) | |
%c | date and time (e.g.,09/16/98 23:48:10) | |
%d | day of the month (16) [01-31] | |
%H | hour,using a 24-hour clock (23) [00-23] | |
%I | %M | minute (48) [00-59] |
%m | month (09) [01-12] | |
%p | either "am" or "pm" (pm) | |
%s | second (10) [00-61] | |
%w | weekday (3) [0-6 = Sunday-Saturday] | |
%x | date (e.g.,09/16/98) | |
%X | time (e.g.,23:48:10) | |
%Y | full year (1998) | |
%y | two-digit year (98) [00-99] | |
%% | the character '%' |
如获取当前年月日时分秒local date=os.date("%Y-%m-%d %H:%M:%s");
以上是内存溢出为你收集整理的Lua获取当前时间全部内容,希望文章能够帮你解决Lua获取当前时间所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)