zoukankan      html  css  js  c++  java
  • 确定一个数组的维度


    <?php
    02 function array_depth($array) {
    03      if(!is_array($array)) return 0;
    04        $max_depth = 1;
    05         foreach ($array as $value) {
    06             if (is_array($value)) {
    07                 $depth = array_depth($value) + 1;
    08  
    09                 if ($depth > $max_depth) {
    10                     $max_depth = $depth;
    11                 }
    12             }
    13         }       
    14         return $max_depth;
    15  }
    16 $array = array(array( array(array(1, 2), 3, 4)));
    17 echo array_depth($array);
    18 ?>
    19  
    20 输出:4
  • 相关阅读:
    jQuery(四)
    jQuery(三)
    jQuery(二)
    jQuery(一)
    JS(四)
    JS(三)
    JS(二)
    类似openDialog的弹窗
    vue的异步组件按需加载
    vue实现点击、滑动右侧字母对应各个城市
  • 原文地址:https://www.cnblogs.com/aqxinzhuan/p/3142812.html
Copyright © 2011-2022 走看看