摘要: 下面介绍PHP中遍历关联数组的三种方法:foreach 'good', 'swimming' => 'very well', 'running' => 'not good' ); foreach ($sports as $key => $value) { echo $key.": ".$value.""; } ?> ... 阅读全文
posted @ 2013-03-27 22:34 IT图书 阅读(258) 评论(0) 推荐(0)