adspace
Explain the syntax for ‘foreach’ loop with example.
Answer Posted / Ravi Shankar Sharma
The foreach loop in PHP is used to iterate over arrays and objects. Here's an example:
- To iterate over an array:
$fruits = array('apple', 'banana', 'orange');
foreach ($fruits as $fruit) {
echo $fruit;
}
- To iterate over an associative array:
$person = array('name' => 'John', 'age' => 30);
foreach ($person as $key => $value) {
echo $key . ': ' . $value;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Tell me what kind of things have you done on the social side?
What is difference between static and final in php?
if you run the app program all vendor open items are cleared but is it possible to reverse the again again open items please tell me the answer
how to detect a mobile device using php
What is the current stable version of php?
Explain me is it possible to destroy a cookie?
sort term descripttion form, report and uery
Which variable declarations within a class is invalid in php?
How to create a web form?
How to calculate the difference between two dates using php?
What is trait in php?
Name and explain five of the PHP error constants?
hello all, I need some sample placement papers in lion bridge.. can anyone help me?
How can we extract string "pcds.co.in" from a string "https://info@pcds.co.in" using regular expression of php? More on reg can you explain
Write a program using while loop?