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

WBOY
Release: 2016-05-16 20:21:08
Original
1082 people have browsed it

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

php对于类似

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

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

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

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

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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template