php-loop-types

PHP Loop Types

avatar
EknowledgePoint

Increase Your Knowledge with us


  • Nov 15, 2022
  • 5 min read
  • 266
  • 2344 Views

Loops in PHP are used to execute the same block of code a specified number of times. PHP supports following four loop types.

  • for − loops through a block of code a specified number of times.

  • while − loops through a block of code if and as long as a specified condition is true.

  • do...while − loops through a block of code once, and then repeats the loop as long as a special condition is true.

  • foreach − loops through a block of code for each element in an array.

We will discuss about continue and break keywords used to control the loops execution.

 

For loop

<?php
for ($x = 0; $x <= 10; $x++) {
  echo  $x.',';
}
?>
output: 0,1,2,3,4,5,6,7,8,9,10,

Explain
$x = 0; - Initialize the loop counter ($x), and set the start value to 0
$x <= 10; - Continue the loop as long as $x is less than or equal to 10
$x++ - Increase the loop counter value by 1 for each iteration

 

While Loop

The while loop executes a block of code as long as the specified condition is true.

<?php  
$x = 1;
 
while($x <= 5) {
  echo 'The number is:'. $x ;
  $x++;
} 
?>  
Output: 
The number is: 1
The number is: 2
The number is: 3
The number is: 4
The number is: 5

Explained
$x = 1; - Initialize the loop counter ($x), and set the start value to 1
$x <= 5 - Continue the loop as long as $x is less than or equal to 5
$x++; - Increase the loop counter value by 1 for each iteration

 

Do While Loop

The do...while loop will always execute the block of code once, it will then check the condition, and repeat the loop while the specified condition is true.

<?php
$x = 1;

do {
  echo 'The number is:'. $x ;
  $x++;
} while ($x <= 5);
?>

Output: 
The number is: 1
The number is: 2
The number is: 3
The number is: 4
The number is: 5

Explained: This is similar to while loop but this loop will execute at least one, because the condition check at last

 

Foreach loop

<?php
$colors = array("red", "green", "blue", "yellow");

foreach ($colors as $value) {
  echo $value;
}
?>

Output: 
red
green
blue
yellow

Explained:
This is simplest loop in php use to display array or object easily.

 

 


avatar

EknowledgePoint

Increase Your Knowledge with us
View Articles

EknowledgePoint is an innovative online learning platform that aims to democratize education by providing a vast array of courses and educational content to learners of all ages and backgrounds. It offers a diverse range of subjects, from academic topics to practical skills, making it a one-stop destination for anyone looking to expand their knowledge base.


5 comments

avatar
Shubham
June 11, 2024 at 6:01 am Reply

Knowledge is the fuel that powers our journey through life. It's platforms like EknowledgePoint that transform information into enlightenment, curiosity into competence, and dreams into reality. Embrace the opportunity to learn, and you'll find that the doors of possibility swing wide open. 🚀💡 #EknowledgePoint.

avatar
EknowledgePoint
June 11, 2024 at 6:55 am Reply

Thank you for your kind words! At EknowledgePoint, we are dedicated to empowering individuals on their learning journey. Your enthusiasm for knowledge and personal growth inspires us to keep providing the best educational resources and experiences. Let's continue to explore and learn together!.

avatar
Shubham
June 11, 2024 at 7:10 am Reply

Thanks For Your Support.

avatar
Neha
June 14, 2024 at 12:35 pm Reply

"I'm constantly amazed by the quality of instructors on EknowledgePoint. Learning from experts in their fields is both enlightening and empowering. 🌟👨‍🏫 #EknowledgePoint.

avatar
Nitin
June 18, 2024 at 11:55 am Reply

EknowledgePoint isn't just a platform; it's a community of learners. The support and camaraderie here are truly inspiring. 🤝🌍 #EknowledgePoint.

Leave a reply

Your email address will not be published. Required fields are marked *

Share this article