PHP判断数组Array的维度(已封装函数)

WBOY
Libérer: 2016-06-23 13:22:52
original
1028 Les gens l'ont consulté

有时候需要判断array的维度,上网查了下很多事类似 http://www.poluoluo.com/jzxy/201306/215088.html 这种写法,拉杂又搞不懂啥意思。下面是我写的:

    private static function array_depth($array) {        if(!is_array($array)) return 0;        $max_depth = 1;        foreach ($array as $value) {            if (is_array($value)) {                $depth = array_depth($value) + 1;                if ($depth > $max_depth) {                    $max_depth = $depth;                }            }        }        return $max_depth;    }
Copier après la connexion

版权声明:本文为博主原创文章,未经博主允许不得转载。

source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal