标签:info tab shift mesh var ref orm 技术 mamicode
如果你想查看更多 Jmeter 常用函数可以在这篇文章找找哦
https://www.cnblogs.com/poloyy/p/13291704.html
以给定格式返回日期,并添加指定的秒数,分钟,小时,天数
${__timeShift(Format, Date to Shift, Value to Shift, Locale to use for format, Name of variable)}
字段 | 含义 | 是否必传 |
---|---|---|
Format |
|
no |
Date to shift | 要转换的日期。如果省略,则日期设置为现在 | no |
Value to shift | 要移动的时间数 | no |
Locale to use for format | 语言环境的字符串格式,如:zh_CN、en_US | no |
Name of variable | 存储结果的变量名 | no |
重点讲下这个参数,它主要是表示要移动的秒、分、小时、天、月的数量,具体栗子如下
"PT20.345S" -- 增加 20.345 秒 "PT15M" -- 增加 15 分钟 "PT10H" -- 增加 10 消失 "P2D" -- 增加 2 天 "P2DT3H4M" -- 增加 2 天 3 小时 4 分钟 "PT-6H3M" -- 减少 6 小时,同时增加 3 分钟 "-PT6H3M" -- 减少 6小时 3 分钟 "-PT-6H+3M" -- 增加 6 小时,同时减少 3 分钟
${__timeShift(yyyy/MM/dd HH:mm:ss, 2020/12/05 13:39:16, PT20.345S,,)}
${__timeShift(yyyy/MM/dd HH:mm:ss,2020/12/05 13:39:16,PT10m21s,,)}
${__timeShift(yyyy/MM/dd HH:mm:ss,2020/12/05 13:39:16,PT-2h20m11s,,)}
${__timeShift(yyyy/MM/dd HH:mm:ss,2020/12/05 13:39:16,-PT2h2m2s,,)}
${__timeShift(yyyy/MM/dd HH:mm:ss,2020/12/05 13:39:16,P2DT3H4S,,)}
${__timeShift(yyyy/MM/dd HH:mm:ss,2020/12/05 13:39:16,P-2DT+2h4m-2s,,)}
Jmeter 常用函数(32)- 详解 __timeShift
标签:info tab shift mesh var ref orm 技术 mamicode
原文地址:https://www.cnblogs.com/poloyy/p/14089273.html