Lua获取当前时间

来源:互联网 发布:淘宝网网上购物 编辑:程序博客网 时间:2024/06/06 07:08

更多好的文章就在 blog.haoitsoft.com,请大家多多支持!

local getTime = os.date(“%c”);

其中的%c可以是以下的一种:(注意大小写)

%aabbreviated weekday name (e.g., Wed)%Afull weekday name (e.g., Wednesday)%babbreviated month name (e.g., Sep)%Bfull month name (e.g., September)%cdate and time (e.g., 09/16/98 23:48:10)%dday of the month (16) [01-31]%Hhour, using a 24-hour clock (23) [00-23]%Ihour, using a 12-hour clock (11) [01-12]%Mminute (48) [00-59]%mmonth (09) [01-12]%peither “am” or “pm” (pm)%Ssecond (10) [00-61]%wweekday (3) [0-6 = Sunday-Saturday]%xdate (e.g., 09/16/98)%Xtime (e.g., 23:48:10)%Yfull year (1998)%ytwo-digit year (98) [00-99]%%the character ‘%’

如获取当前年月日时分秒:local date=os.date(“%Y-%m-%d %H:%M:%S”);

os.time()
获取当前秒

更多文章,请移步到http://blog.haoitsoft.com
0 0
原创粉丝点击