Advertisements
Advertisements
Question
Write the features Looping Structure.
Short Note
Solution
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
- while loop
- do-while loop
- for each loop
shaalaa.com
Looping Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
The loop exclusively used for arrays is _____.
PHP supports which types of looping techniques ______.
What will be the output of the following PHP code?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>
Define Looping Structure in PHP.
What is For each loop in PHP?
Differentiate For each and While loop.
Write short notes on Do while Loop.
Explain Looping Structure in PHP.
Discuss in detail about Foreach loop.
Explain working of loops in array.