Advertisements
Advertisements
प्रश्न
Write Syntax of For each loop in PHP.
टिप्पणी लिखिए
उत्तर
for each ($array as $value)
{
code to be executed;
}
shaalaa.com
Looping Structure
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
The loop exclusively used for arrays is _____.
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?
What is For each loop in PHP?
List out Looping Structure in PHP.
Explain the use of for each loop in PHP.
Write the purpose of Looping Structure in PHP.
Write short notes on Do while Loop.
Explain Looping Structure in PHP.
Explain concepts of for loop with example.