GetNetworkTime 获取网络时间命令维护通知
GetNetworkTime获取网络时间命令已于1月11日下线维护,维护期间将无法通过该命令正常获取网络时间,建议作者通过其他方式获取网络时间(参考以下获取网络时间脚本案例)。命令恢复使用时间待定,由此带来的不便敬请谅解。脚本案例一:- TracePrint 获取网络时间()
- Function 获取网络时间()
- Import "Cjson.lua"
- Dim sUrl = "http://quan.suning.com/getSysTime.do"
- Dim sJson = Url.Get(sUrl)
- Dim table = Cjson.Decode(sJson)
- 获取网络时间 = table["sysTime2"]
- End Function
复制代码 脚本案例二:- TracePrint GetNetTime()
- Function GetNetTime()
- Import "Cjson.lua"
- Dim sJson= Url.Get( "http://api.k780.com/?app=life.time&appkey=10003&sign=b59bc3ef6191eb9f747dd4e83c99f2a4&format=json")
- Dim table = Cjson.Decode(sJson)
- GetNetTime = table["result"]["datetime_1"]
- End Function
复制代码 脚本案例三:- Dim NetTime = Split(Url.Get("https://apps.game.qq.com/CommArticle/app/reg/gdate.php "),"'")
- TracePrint NetTime(1)
复制代码