标签: asterisk
exten => s,n,GotoIf($["${choice}" = "*"] & $["${isharvesttoday}" = "1"]?question4)
上述行在我的应用程序中不起作用。这种语法是否正确?
答案 0 :(得分:6)
不,不是。这应该有效:
exten => s,n,GotoIf($[$["${choice}" = "*"] & $["${isharvesttoday}" = "1"]]?question4)