php删除多维数组中的空数组ps:不是删除元素

2025-04-05 05:06:12
推荐回答(1个)
回答1:

用递归。
static function test($arr){
foreach($arr as $key => $value){
if(is_array($value)&&empty($value)){
unset($key);

}else{
class::test($value);

}

}

}