Lua获取指定时间时间戳【判断当前时间是否在某时间区间内】

博客直接给出代码,涉及Lua相关内容,虽未展示具体代码,但表明重点在于代码呈现,与信息技术领域的Lua编程相关。

废话没有,直接上代码


--获取当日时间戳0点
function getTodayTimeStamp()

  local cDateCurrectTime = os.date("*t")

  local cDateTodayTime = os.time({year=cDateCurrectTime.year, month=cDateCurrectTime.month, day=cDateCurrectTime.day, hour=0,min=0,sec=0})

  return cDateTodayTime
end
--格式化时间为时间戳
function FormatTime(lastDate,day,hour)
	local dayTimestamp = 24* 60* 60
	lastDate = lastDate + dayTimestamp  *  day
	local date = os.date("*t", time)
	--这里返回的是你指定的时间点的时间戳
	return os.time({year=date.year, month=date.month, day=date.day, hour=hour, minute = date.minute, second = date.second})
end

function main()
    --获取当日时间戳0点
    local cDateTodayTime = getTodayTimeStamp()
    --当前时间戳
    local cDateCurrectTime = os.time()
    local cDateTodayTime_8 = FormatTime(cDateTodayTime,0,8.5)
    local cDateTodayTime_9 = FormatTime(cDateTodayTime,0,9.5)
    if cDateTodayTime_8 < cDateCurrectTime and cDateCurrectTime < cDateTodayTime_9 then
        print("now is 8:30--9:30 :now"..cDateCurrectTime..",8:30:"..cDateTodayTime_8..",9:30:"..cDateTodayTime_9)
    else
        print("now is not 8:30--9:30:now"..cDateCurrectTime..",8:30:"..cDateTodayTime_8..",9:30:"..cDateTodayTime_9)
    end
end

main()

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值