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

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

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

8条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-04 10:23

    It should be pretty simple

    foreach abstracts away some of the complexity and is usually easier. I use this whenever I don't need to know the numerical index of the array or $key => $value won't provide me with it.

    for is the older C style where you must first perform a count() so you know how many iterations the loop requires. It is useful when you need to know the index, or to count backwards or step through in different groups.

提交回复
热议问题