what are the difference between for loop & for each loop in php

前端 未结 8 1906
庸人自扰
庸人自扰 2021-01-04 09:24

What are the differences between the for loop and the foreach loop in PHP?

8条回答
  •  生来不讨喜
    2021-01-04 10:06

    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

提交回复
热议问题