/**
* 检测数据的深度
* @param $array 要检测的数组
* @return int 返回深度值
*/
function array_depth($array)
{
$max_depth = 1;
foreach ($array as $value) {
if (is_array($value)) {
$depth = $this->array_depth($value) + 1;
if ($depth > $max_depth) {
$max_depth = $depth;
}
}
}
return $max_depth;
}
标签:数组,max,value,depth,几维,深度,array
From: https://www.cnblogs.com/fuqian/p/17612479.html