摘要: 下面介绍PHP中遍历关联数组的三种方法:foreach<?php $sports = array( 'football' => 'good', 'swimming' => 'very well', 'running' => 'not good' ); foreach ($sports as $key => $value) { echo $key.": ".$value."<br />"; } ?> 程序运行结果: 阅读全文
posted @ 2013-03-27 22:34 方倍工作室 阅读(1104) 评论(0) 推荐(0) 编辑