或者
例
$rs=array(array(1,2),array(3,4))foreach($rs as $item){ echo $item[0]."-".$item[1]."";}
结果就是
1-2
3-4