What are the differences between the for loop and the foreach loop in PHP?
for
foreach
Foreach is basically a shortcut for doing the following
//Foreach method foreach ($myArray as $myVar) { } //Normal for equivalent for ($i = 0; $i < $limit; $i++) { $myVar = $myArray[$i]; }
But there are other issues too, read this article about it