1、数组 深度遍历
function fun($a,&$b) { foreach ($a as $k=>$val) { if (is_array($val)) { $b[]=$k; fun($val,$b); } } }