时间戳转换月日年时分秒
;格式:UNIXTOSTR 时间戳 变量1 变量2
[@MAIN]
#if
#act
UNIXTOSTR
1669705167 S1 S2
sendmsg 6 <$str(S1)>
//获取到的变量格式为:2022/11/29 14:59:27
sendmsg 6 <$str(S2)>
//获取到的变量格式为:2022-11-29-14-59-27\
新时间戳转换北京时间
格式:UNIXTOSTREX 参数1 参数2
参数3
参数1:<$UTCNOW8>或数值
参数2:S1获取保存变量1(格式为:2022/11/29
14:59:27)
参数3:S2获取保存变量1(格式为:2022-11-29-14-59-27)
[@main]
#ACT
UNIXTOSTREX <$UTCNOW8> S1 S2
sendmsg 6
时间戳转北京时间<$str(S1)>
sendmsg 6
时间戳转北京时间<$str(S2)>