Simple example of phpwhile loop control, phpwhile loop instance. A simple example of phpwhile loop control. a while loop instance of phpwhile loop is the simplest loop in PHP. its basic format is: while (expr) {statement} or while (expr ): statement php while loop control simple instance, phpwhile loop instance
While loop is the simplest loop in PHP. its basic format is:
While (expr) {statement}
Or
While (expr): statement endwhile;
This syntax indicates that as long as the expr expression is TRUE, statement is executed until the expr is FALSE, and statement indicates the action or logic to be executed.
<? Php $ I = 1; while ($ I <= 10) {echo $ I; $ I ++;}?>
In this example, 1 to 10 are output cyclically.
The simple example of the above php while loop control is all the content shared by the editor. I hope to give you a reference, and I hope you can support the help house more.
Http://www.bkjia.com/PHPjc/1133045.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1133045.htmlTechArticlephp while loop control simple instance, phpwhile loop instance while loop is the most simple loop in PHP, the basic format is: while (expr) {statement} or while (expr ): statement...