Thinkai's Blog

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

正在浏览分类 转换

总共找到 1 篇

时间戳转正常时间 Autohotkey 10057

作者为 发表

Autohotkey

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
}

a := Time_human2unix(A_Now) ;转时间戳
b := Time_unix2human(a) ;转 YYYYMMDDHH24MISS
FormatTime, time,  % b, yyyy-MM-d
MsgBox % a

转自:维京海盗


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

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

49 queries in 1.259 seconds |