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

Lua常用时间函数

时间:2017-09-01 19:36:41      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:return   local   log   输出   style   color   完整   时间函数   转换   

常用时间函数

print(os.time()) --当前系统时间值 1456368102  
print(os.date("%Y%m%d",os.time())) --当前系统时间的格式化字符串 20160225  
print(os.date("*t"), os.time())  --当前系统时间表  

table完整版本:

 {year=2005, month=11, day=6, hour=22,min=18,sec=30,isdst=false}

分别是:年 月 日 小时 分钟 秒 是否夏令时

字符串转时间值

function string2time( timeString )  
    local Y = string.sub(timeString , 1, 4)  
    local M = string.sub(timeString , 5, 6)  
    local D = string.sub(timeString , 7, 8)  
    return os.time({year=Y, month=M, day=D, hour=0,min=0,sec=0})  
end  
  
local sTime = "20160202"  
local timeVal = string2time(sTime)  
print(sTime)  
print(timeVal)

输出结果:

20160202
1454371200

思路:

字符串转换成table,table转换到时间值

Lua常用时间函数

标签:return   local   log   输出   style   color   完整   时间函数   转换   

原文地址:http://www.cnblogs.com/AaronBlogs/p/7464645.html

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