时间:2021-07-01 10:21:17 帮助过:100人阅读
纯手打的,大概就是那么个意思,最好把数据放出来好实际测试一下:
function array_unzip_rescursive($arr) {
$res = array();
if(array_key_exists('name', $arr) $res[] = $arr;
else foreach($arr as $item) $res = array_merge($res, array_unzip_rescursive($item));
return $res;
}
foreach ($arr['1'] as $row){
$res[] = $row['0'];
}