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

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

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

8条回答
  •  星月不相逢
    2021-01-04 10:14

    for loop is used if we know already that how many times the script should be run but in the case of foreach loop, we don't have any idea about the number of iteration.

    Also foreach loop is used to iterate only arrays and objects.

    You can refer the link for better understanding the difference between for and foreach loop -

    https://www.quora.com/What-is-the-difference-between-for-and-foreach-in-php

提交回复
热议问题