标签: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转换到时间值
标签:return local log 输出 style color 完整 时间函数 转换
原文地址:http://www.cnblogs.com/AaronBlogs/p/7464645.html