程序员人生 网站导航

php 读取多维数组方法

栏目:php教程时间:2013-10-18 07:43:34
  1. for($i=0;$i<count($array);$i++) 
  2. for($j=0;$j<count($array[$i]);$j++) 
  3.   { 
  4.      echo $array[$j][userid]; 
  5.   } 

因为它是个多维数组,一般用

  1. foreach ($arr as $key => $value) { 
  2.     echo "Key: $key; Value: $valuen"
  3. Array ( [0] => Array ( [userid] => 1 [username] => 刘振鹏 [status] => 0 [userpwd] => ) [1] => Array ( [userid] => 2 [username] => 刘鹏飞 [status] => 0 [userpwd] => ) [2] => Array ( [userid] => 3 [username] => 刘朋 [status] => 0 [userpwd] => ) [3] => Array ( [userid] => 4 [username] => admin [status] => 0 [userpwd] => ) [4] => Array ( [userid] => 11 [username] => admin [status] => 0 [userpwd] => ) [5] => Array ( [userid] => 12 [username] => admin [status] => 0 [userpwd] => ) [6] => Array ( [userid] => 13 [username] => liuzp [status] => 0 [userpwd] => ) [7] => Array ( [userid] => 14 [username] => lzp [status] => 0 [userpwd] => ) ) 

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐