数组并不难呀.
 
<?php
foreach(数组名 as $key=>$val) {
 print $key."=>".$val."<br>";//遍历一个数组.
}
?>