dongyinzheng6572 2017-10-19 05:35
浏览 77
已采纳

使用PHP可变级别多维数组来'flatten'数组? [重复]

This question already has an answer here:

I'm looking for a solution to flatten a variable multi-dimensionaled array to flatten all the values in the last available array to a single Array[] (containing the dataset of each last array in the multidimensional array).

Any help is appreciated!

It differs from other questions

Because the ending result should be a collection of all Arrays containing :

array(
    'title' => xx,
    'id' => xx
)

listed in the different multidimensional arrays. The different items all have fixed keys: title and id.

Sample Base array

$data = array(
    array(
        'title' => xx,
        'id' => xx
    ),
    array(
        array(
            array(
                'title' => xx,
                'id' => xx
            ),
            array(
                'title' => xx
                'id' => xx
            )
        )
    ),
    array(
        array(
            array(
                array(
                    'title' => xx,
                    'id' => xx
                ),
                array(
                    'title' => xx,
                    'id' => xx
                ),
                array(
                    'title' => xx,
                    'id' => xx
                )
            )
        ),
        array(
            'title' => xx,
            'id' => xx
        ),
        array(
            array(
                array(
                    array(
                        'title' => xx,
                        'id' => xx
                    )
                )
            )
        )
    )
);

Should be flattend to

 $data = array(
    array(
        'title' => xx,
        'id' => xx
    ),
    array(
        'title' => xx,
        'id' => xx
    ),
    array(
        'title' => xx,
        'id' => xx
    ),
    array(
        'title' => xx,
        'id' => xx
    ),
    array(
        'title' => xx,
        'id' => xx
    ),
    array(
        'title' => xx,
        'id' => xx
    ),
    array(
        'title' => xx,
        'id' => xx
    ),
    array(
        'title' => xx,
        'id' => xx
    )
);
</div>

展开全部

  • 写回答

1条回答 默认 最新

  • duancuan7057 2017-10-19 06:03
    关注
    function flatten_array(&$data) {
    
        foreach ($data as $index => &$item) {
    
            if(has_array_child($item)) {
                unset($data[$index]);
                flatten_array($item);
                $data = array_merge($data, $item);
            }
    
        }
    
    }
    
    function has_array_child($item) {
        foreach($item as $child) {
            if(is_array($child)) {
                return TRUE;
            }
        }
    
        return FALSE;
    }
    
    flatten_array($data);
    
    print_r($data);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部