自定义一个小函数,返回数组维度
function array_depth($array) {
$depth=0;
foreach($array as $value){
if(is_array($value)){
$depth=max($depth,array_depth($value));
}
return $depth+1;
使用方法
echo array_depth(array([[1]])); //输出3
上一篇:使用PHP发送邮件,已适配PHP8.0
下一篇:PHP错误:open_basedir restriction in effect. File...解决方法