Advertisements
Advertisements
Question
Differentiate For each and While loop.
Answer in Brief
Solution
While loop | Foreach loop | |
Working principle | The while statement will execute a block of code If and as Song as a test expression, is true. | The foreach statement is used to loop through arrays. |
Working principle | If the test expression is true then the code block will be executed. After the code has executed the test expression will again be evaluated and the loop will continue until the test expression is found to be false. | For each pass, the value of the current array element is assigned to $value and the array pointer is moved by one and in the next pass, the next element will be processed. |
Syntax |
|
|
shaalaa.com
Looping Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Which loop evaluates condition expression as Boolean, if it is true, it executes statements and when it is false it will terminate?
PHP supports which types of looping techniques ______.
Define for loop in PHP.
Write Syntax of For loop in PHP.
Write Syntax of while loop in PHP.
Compare for loop and for each loop.
Differentiate While and Do while loops.
Discuss in detail about Foreach loop.
Explain the process Do while loop.
Explain working of loops in array.