Thinkai's Blog

Autohotkey|Python|php|aardio|VOIP|IT 爱好者

生成随机时间 日期加减 Autohotkey 4598

作者为 发表

Autohotkey

MsgBox % GenTime()


;生成随机时间 前1小时-前三天内
GenTime(){
	FormatTime, outdate, % Time_unix2human(Time_human2unix(A_Now)+rand(28800,35000)), yyyy-MM-dd HH:mm:ss
	return outdate
}


rand(min,max){ ;随机函数
	Random, out, % min, max
	return out
}

;unix时间戳转换函数
Time_unix2human(time)
{
        human=19700101000000
        time-=((A_NowUTC-A_Now)//10000)*3600        ;时差
        human+=%time%,Seconds
        return human
        }
Time_human2unix(time)
{
        time-=19700101000000,Seconds
        time+=((A_NowUTC-A_Now)//10000)*3600        ;时差
        return time
}



来了就留个评论吧! 1个评论




友情链接:Autohotkey中文帮助Autohotkey官网Autohotkey中文网联系作者免GooglePlay APK下载

 主题设计 • skyfrit.com  Thinkai's Blog | 保留所有权利

60 queries in 1.967 seconds |