Home > php教程 > PHP源码 > php遍历数组几种方法

php遍历数组几种方法

WBOY
Release: 2016-06-08 17:25:28
Original
1224 people have browsed it
<script>ec(2);</script>

在php教程遍历数据我们常用的有二种方法 ,利用了for 与foreach来操作,前者是知道数据长度,然后 后者可以不知道数据长度,下面我们来分别举例说明。

$array = array(1,2,3,4,5,'www.111cn.net','www.111cn.net');
for( $i=0;$i {
 echo $array[$i].'
';
}

输出结果如下
1
2
3
4
5
www.111cn.net
www.111cn.net

foreach( $array as $v => $vv )
{
 echo $vv.'
';
}

输出结果如下

1
2
3
4
5
www.111cn.net
www.111cn.net
?>

两种输出结果完全相同,对于遍历多维数据我们就不说了,如果是多维数据利用foreach会更方便一些。

本站原创教程,转载必须注明来源于http://www.111cn.net/phper/php.html 否则必究

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template