php 获取array key值_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > php 获取array key值

php 获取array key值

 2011/1/15 7:50:49  paulfzm  http://paulfzm.javaeye.com  我要评论(0)
  • 摘要:$row=array('first'=>'number','second'=>'letter','third'=>null,'forth'=>'word');for($i=0;$i<count($row);$i++){echo"\"".key($row)."\"";next($row);}
  • 标签:KEY PHP

$row = array('first'=>'number','second'=>'letter','third'=>null,'forth'=>'word');
for($i=0;$i<count($row);$i++){
??? echo "\"".key($row)."\"";
??? next($row); ?
}

发表评论
用户名: 匿名