1.lua
--把時間 秒,轉化爲xx天xx時xx分xx秒 的形式 function convertTimeForm(second) local timeDay = math.floor(second/86400) local timeHour = math.fmod(math.floor(second/3600), 24) local timeMinute = math.fmod(math.floor(second/60), 60) local timeSecond = math.fmod(second, 60) return timeDay, timeHour, timeMinute, timeSecond end
2.code
local function formatTime(time) local hour = math.floor(time/3600); local minute = math.fmod(math.floor(time/60), 60) local second = math.fmod(time, 60) local rtTime = string.format("%s:%s:%s", hour, minute, second) return rtTime end
3.orm
--把1990.1.1至今的秒數,轉化爲年月日,時分 --endTime 單位毫秒 os.date("%Y-%m-%d %H:%M",math.floor(endTime/1000))