TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

PHP while loop

PHP while loop for beginners and professionals with examples, php file, php session, php date, php array, php form, functions, time, xml, ajax, php mysql, regex, string, oop

<< Back to PHP

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

flowchart of php while loop

PHP While Loop Example

<?php  
$n=1;  
while($n<=10){  
echo "$n<br/>";  
$n++;  
}  
?>

Output:

1
2
3
4
5
6
7
8
9
10

Alternative Example

<?php  
$n=1;  
while($n<=10):  
echo "$n<br/>";  
$n++;  
endwhile;  
?>  

Output:

1
2
3
4
5
6
7
8
9
10

Example

Below is the example of printing alphabets using while loop.

<?php
	$i = 'A';
	while ($i < 'H') {
		echo $i;
		$i++;
		echo "</br>";
	}
?>

Output:

A
B
C
D
E
F
G

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 1
1 2
1 3
2 1
2 2
2 3
3 1
3 2
3 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 TheDeveloperBlog!";
		echo "</br>";
	}
?>

Output:

Hello TheDeveloperBlog!
Hello TheDeveloperBlog!
Hello TheDeveloperBlog!
Hello TheDeveloperBlog!
.
.
.
.
.
Hello TheDeveloperBlog!
Hello TheDeveloperBlog!

Next TopicPHP Do While Loop




Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf