判断php数组维度(php数组长度)的方法
时间:2021-07-01 10:21:17
帮助过:14人阅读
/** - * 返回数组的维度
- * @param [type] $arr [description]
- * @return [type] [description]
- */ bbs.it-home.org
- function arrayLevel($arr){
- $al = array(0);
- function aL($arr,&$al,$level=0){
- if(is_array($arr)){
- $level++;
- $al[] = $level;
- foreach($arr as $v){
- aL($v,$al,$level);
- }
- }
- }
- aL($arr,$al);
- return max($al);
- }
$arr = array( - '0'=>'0',
- );
echo arrayLevel($arr); - ?>
|