Search:
     
3CX Phone System for Windows Download the Free Edition

Asterisk cmd While

While

Loop until condition is false

Synopsis

While(condition)

Description

Execution loops between a While and an EndWhile statement, until the condition specified in the While evaluates to false. The condition is evaluated once per loop, at the beginning.

Example

 exten => 123,1,Answer
 exten => 123,n,Set(i=1)
 exten => 123,n,While($[${i} < 5])
 exten => 123,n,SayNumber(${i})
 exten => 123,n,Set(i=$[${i} + 1])
 exten => 123,n,EndWhile


Notes

  • While / EndWhile supports nesting. That is, you can have more than one set of While / EndWhile executing for the same channel at once.
  • If the While condition initially evaluates to false, Asterisk will jump down to after the matching EndWhile.
  • I see in the Asterisk subversion trunk there is yet another loop control modifier, ContinueWhile


Asterisk | Applications | Functions | Variables | Expressions | Asterisk FAQ


Created by: Corydon76,Last modification on Fri 12 of Oct, 2007 [12:15 UTC] by chandave


Please update this page with new information, just login and click on the "Edit" or "Discussion" tab. Get a free login here: Register Thanks! - support@voip-info.org

Page Changes | Comments

 





Search: