Home  >  Article  >  Backend Development  >  php对关联数组循环遍历的实现方法_php技巧

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

WBOY
WBOYOriginal
2016-05-16 20:21:081036browse

本文实例讲述了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