Advertisements
Advertisements
प्रश्न
Explain Looping Structure in PHP.
टिप्पणी लिखिए
उत्तर
- Looping Structures are useful for writing iteration logics.
- It is the most important feature of many programming languages, including PHP.
- They are implemented using the following categories:
- For Loop
- For each Loop
- while Loop
- Do while Loop
- For Loop:
For loop is an important functional looping system which is used for iteration logics when the programmer know in advance how many times the loop should run.
Syntax:for (init counter; test counter; increment counter) { code to be executed; }
- Foreach Loop:
foreach loop is exclusively available in PHP. It works only with arrays. The loop iteration deepens on each KEY Value pair in the Array. For each, loop iteration the value of the current array element is assigned to $value variable and the array pointer is shifted by one, until it reaches the end of the array element.
Syntax:for each ($array as $value) { code to be executed; }
- While Loop:
While loop is an important feature which is used for simple iteration logics. It is checking the condition whether true or false. It executes the loop if a specified condition is true.
Syntax:while (condition is true) { code to be executed; }
- Do While Loop:
Do while loop always run the statement inside of the loop block at the first time execution. Then it is checking the condition whether true or false. It executes the loop, if the specified condition is true.
Syntax:do { code to be executed; } while (condition is true);
shaalaa.com
Looping Structure
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Loops that iterate for fixed number of times is called ______.
Which loop evaluates condition expression as Boolean, if it is true, it executes statements and when it is false it will terminate?
Define Looping Structure in PHP.
Define for loop in PHP.
What is For each loop in PHP?
Write Syntax of For each loop in PHP.
Write Syntax of while loop in PHP.
Compare for loop and for each loop.
Write short notes on Do while Loop.
Differentiate While and Do while loops.