PHP while loop - javatpoint
PHP While Loop
PHP while loop can be used to traverse set of code like for loop. The while loop executes a block of code repeatedly until the condition is FALSE. Once the condition gets FALSE, it exits from the body of loop.
It should be used if the number of iterations is not known.
The while loop is also called an Entry control loop because the condition is checked before entering the loop body. This means that first the condition is checked. If the condition is true, the block of code will be executed.
Syntax
- while(condition){
- //code to be executed
- }
Alternative Syntax
- while(condition):
- //code to be executed
- endwhile;
PHP While Loop Flowchart
PHP While Loop Example
- <?php
- $n=1;
- while($n<=10){
- echo "$n<br/>";
- $n++;
- }
- ?>
Output:
HTML Tutorial
12345678910
Alternative Example
- <?php
- $n=1;
- while($n<=10):
- echo "$n<br/>";
- $n++;
- endwhile;
- ?>
Output:
12345678910
Example
Below is the example of printing alphabets using while loop.
- <?php
- $i = 'A';
- while ($i < 'H') {
- echo $i;
- $i++;
- echo "</br>";
- }
- ?>
Output:
ABCDEFG
PHP Nested While Loop
We can use while loop inside another while loop in PHP, it is known as nested while loop.
In case of inner or nested while loop, nested while loop is executed fully for one outer while loop. If outer while loop is to be executed for 3 times and nested while loop for 3 times, nested while loop will be executed 9 times (3 times for 1st outer loop, 3 times for 2nd outer loop and 3 times for 3rd outer loop).
Example
- <?php
- $i=1;
- while($i<=3){
- $j=1;
- while($j<=3){
- echo "$i $j<br/>";
- $j++;
- }
- $i++;
- }
- ?>
Output:
1 11 21 32 12 22 33 13 23 3
PHP Infinite While Loop
If we pass TRUE in while loop, it will be an infinite loop.
Syntax
- while(true) {
- //code to be executed
- }
Example
- <?php
- while (true) {
- echo "Hello Javatpoint!";
- echo "</br>";
- }
- ?>
Output:
Hello Javatpoint!Hello Javatpoint!Hello Javatpoint!Hello Javatpoint!.....Hello Javatpoint!Hello Javatpoint!