Home  >  Article  >  Backend Development  >  php中foreach()的用法

php中foreach()的用法

WBOY
WBOYOriginal
2016-06-23 14:31:15949browse

php中foreach()的用法

2006年12月27日 星期三 16:45

foreach()有两种用法:

1: foreach(array_name as $value)

   {

      statement;

   }

这里的array_name是你要遍历的数组名,每次循环中,array_name数组的当前元素的值被赋给$value,并且数组内部的下标向下移一步,也就是下次循环回得到下一个元素。

2:foreach(array_name as $key => $value)

   {

       statement; 

    }

  这里跟第一种方法的区别就是多了个$key,也就是除了把当前元素的值赋给$value外,当前元素的键值也会在每次循环中被赋给变量$key。键值可以是下标值,也可以是字符串。比如book[0]=1中的“0”,book[id]="001"中的“id”.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:PHP文件处理Next article:PHP简洁函数