Lua时间转化的几个小例子
1、把时间秒,转化为xx天xx时xx分xx秒的形式
--把时间秒,转化为xx天xx时xx分xx秒的形式 functionconvertTimeForm(second) localtimeDay =math.floor(second/86400) localtimeHour =math.fmod(math.floor(second/3600),24) localtimeMinute =math.fmod(math.floor(second/60),60) localtimeSecond =math.fmod(second,60)
returntimeDay,timeHour,timeMinute,timeSecond end