Home  >  Article  >  php教程  >  php对关联数组循环遍历的实现方法

php对关联数组循环遍历的实现方法

WBOY
WBOYOriginal
2016-06-06 20:06:491328browse

这篇文章主要介绍了php对关联数组循环遍历的实现方法,涉及php操作数组的技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了php对关联数组循环遍历的实现方法。分享给大家供大家参考。具体分析如下:

php对于类似

$age = array("zhangshan"=>14,"lisi"=>15,"sharejs"=>16);

这样的数组可以通过foreach的方法进行遍历,,下面是详细的代码:

$age = array("zhangshan"=>14,"lisi"=>15,"sharejs"=>16); foreach($age as $name=>$value){ echo $name . "=" . $value; echo "\n"; }

希望本文所述对大家的php程序设计有所帮助。

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