码迷,mamicode.com
首页 > 其他好文 > 详细

lua 时间转化

时间:2015-05-25 18:46:08      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

1、

把时间 秒,转化为xx天xx时xx分xx秒 的形式

--把时间 秒,转化为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、

把时间 秒,转化为xx时xx分xx秒 的形式

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、

--把1990.1.1至今的秒数,转化为年月日,时分
--endTime 单位毫秒
os.date("%Y-%m-%d  %H:%M",math.floor(endTime/1000))


lua 时间转化

标签:

原文地址:http://blog.csdn.net/tianxiawuzhei/article/details/45971947

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!