程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> Lua時間轉化的幾個小例子

Lua時間轉化的幾個小例子

編輯:更多關於編程

       這篇文章主要介紹了Lua時間轉化的幾個小例子,本文直接給出3段例子代碼,需要的朋友可以參考下

      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))

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved