主頁(yè) > 知識(shí)庫(kù) > Lua時(shí)間轉(zhuǎn)化的幾個(gè)小例子

Lua時(shí)間轉(zhuǎn)化的幾個(gè)小例子

熱門標(biāo)簽:免費(fèi)門店地圖標(biāo)注注冊(cè)入駐 杞縣地圖標(biāo)注app 陜西便宜電銷機(jī)器人軟件 外呼系統(tǒng)一天耗費(fèi)多少流量 衡水外呼線路解決 昆明電話外呼系統(tǒng)好么 艾比利外呼系統(tǒng) 電話機(jī)器人每天搜索多少次 ??谥悄苷Z(yǔ)音電銷機(jī)器人好用嗎

1、把時(shí)間 秒,轉(zhuǎn)化為xx天xx時(shí)xx分xx秒 的形式

復(fù)制代碼 代碼如下:

--把時(shí)間 秒,轉(zhuǎn)化為xx天xx時(shí)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、把時(shí)間 秒,轉(zhuǎn)化為xx時(shí)xx分xx秒 的形式

復(fù)制代碼 代碼如下:

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、

復(fù)制代碼 代碼如下:

--把1990.1.1至今的秒數(shù),轉(zhuǎn)化為年月日,時(shí)分
--endTime 單位毫秒
os.date("%Y-%m-%d  %H:%M",math.floor(endTime/1000))

標(biāo)簽:臨滄 營(yíng)口 西寧 昌都 泰安 南京 宿遷

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Lua時(shí)間轉(zhuǎn)化的幾個(gè)小例子》,本文關(guān)鍵詞  Lua,時(shí)間,轉(zhuǎn)化,的,幾個(gè),小,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Lua時(shí)間轉(zhuǎn)化的幾個(gè)小例子》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于Lua時(shí)間轉(zhuǎn)化的幾個(gè)小例子的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章