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

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

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

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

    A "for" loop gives you an incrementing number (in its most common use) which you can use any way you like.

    "foreach" is a special construct made for looking at successive members of an array.

    As an example, you can use a "for" loop to create something that does what "foreach" does. But foreach does that with less required code.

提交回复
热议问题