Core PHP, PHP Beginners

PHP Loops: Foreach, For and While

PHP Loops are used for executing the same block again and again until the certain condition is met. The main idea behind...

Written by Bikash · 1 min read >
PHP Foreach, For and While Loops

PHP Loops are used for executing the same block again and again until the certain condition is met.

The main idea behind the loops is automating the repetitive task within a program to save the effort of the programmer as well as time. PHP supports many types of loops, some are listed below,

  • While: This loop works until the condition is true.
  • do…while: This loop executed the block of code then check the condition, if the condition is true then repeated the execution.
  • for: loops through a block until the specified condition reaches.
  • foreach: Loop through the block of code snippet and give each element of an array.
PHP Foreach, For and While Loops

Complete Explanations of PHP Loops

You will also see the example of the foreach() loop at this article, and also learn how it works with our projects.

PHP While Loop

In while loop, first, check the condition. If the given condition is true, the block of code is executed until it evaluates false. If false then the loop will be terminated.

While loop Structure

Example:

Output

1
2
3

http://codingtasks.net/javascript-array/

PHP For Loop

For Loop Structure

Summary

Here,

  • for…{} is the loop block
  • In variable initialization, you can initialize a variable like $i=0.
  • on the condition, is evaluated the condition for each PHP execution, if it getting true then the loop is terminated.
  • variable_increment, is used for variable initial value counter.

Example

Output

1
2
3
4

PHP foreach Loop

Structure

In foreach() loop, $variable is an array element. Loop through the block of code snippet and give each element of an array.

Example:

Output:

name: PHPCODER
email: phpcodertech@mail.com
age: 25
gender: male

Also Check:

PHP Loops official website where you learn more about loops in PHP,

https://www.php.net/manual/en/control-structures.for.php

Happy Coding..!

Was this article helpful?
YesNo
Written by Bikash
My name is Bikash Kr. Panda. I own and operate PHPCODER.TECH. I am a web Programmer by profession and working on more than 50 projects to date. Currently I am working on the web-based project and all the CMS and frameworks which are based on PHP. Profile

Leave a Reply

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