InterviewSolution
Saved Bookmarks
| 1. |
Write Syntax of For each loop in PHP? |
|
Answer» for each ($array as $value) { code to be executed; } |
|