Führt eine Asterisk-Anwendung unter bestimmten Bedingungen aus.
ExecIf(Ausdruck
,Applikation
,Argumente
)
Ist Ausdruck
wahr, wird die angegebene
Applikation
mit den Parametern Argumente
ausgeführt, und deren Ergebnis zurückgeliefert. Siehe
doc/README.variables
(1.2) /
doc/channelvariables.txt
(1.4) für weiterführende
Informationen über Standard-Asterisk-Ausdrücke.
Ist der Ausdruck
nicht wahr (also false), wird die
Ausführung mit der nächsten Priorität fortgesetzt.
exten => 123,1,ExecIf($[${CALLERID(num)} = 101],SayDigits,123) exten => 123,n,SayDigits(678)
Interner Hilfetext zu dieser Applikation in Asterisk 1.4: -= Info about application 'ExecIf' =- [Synopsis] Executes dialplan application, conditionally [Description] Usage: ExecIF (<expr>|<app>|<data>) If <expr> is true, execute and return the result of <app>(<data>). If <expr> is true, but <app> is not found, then the application will return a non-zero value. Differenz zum internen Hilfetext in Asterisk 1.2: 5c5 < Executes dialplan application, conditionally --- > Conditional exec 12d11 < |
Siehe auch.
„Exec()
“