PHP 中的数组管理


Array management in php

它通常与magento中的一个问题有关。但我认为使用核心 PHP 也可以给我一个我想要的 wat

我这里有一个循环数组问题,我的 aray 是这样的

    Array
    (
        [0] => Array
            (
                [category_id] => 2
                [parent_id] => 1
                [name] => Koffersenkisten
                [is_active] => 0
                [position] => 1
                [level] => 1
                [children] => Array
                    (
                        [0] => Array
                            (
                                [category_id] => 40
                                [parent_id] => 2
                                [name] => Muziek
                                [is_active] => 1
                                [position] => 1
                                [level] => 2
                                [children] => Array
                                    (
                                        [0] => Array
                                            (
                                                [category_id] => 46
                                                [parent_id] => 40
                                                [name] => Gitaar koffer
                                                [is_active] => 1
                                                [position] => 1
                                                [level] => 3
                                                [children] => Array
                                                    (
                                                        [0] => Array
                                                            (
                                                                [category_id] => 50
                                                                [parent_id] => 46
                                                                [name] => Bas gitaar koffer
                                                                [is_active] => 1
                                                                [position] => 1
                                                                [level] => 4
                                                                [children] => Array
                                                                    (
                                                                    )
                                                            )
                                                        [1] => Array
                                                            (
                                                                [category_id] => 51
                                                                [parent_id] => 46
                                                                [name] => Electrische gitaar koffer
                                                                [is_active] => 1
                                                                [position] => 2
                                                                [level] => 4
                                                                [children] => Array
                                                                    (
                                                                    )
                                                            )
                                                        [2] => Array
                                                            (
                                                                [category_id] => 47
                                                                [parent_id] => 46
                                                                [name] => Akoestische gitaar koffer
                                                                [is_active] => 1
                                                                [position] => 3
                                                                [level] => 4
                                                                [children] => Array
                                                                    (
                                                                    )
                                                            )
                                                        [3] => Array
                                                            (
                                                                [category_id] => 49
                                                                [parent_id] => 46
                                                                [name] => Gitaar soft cases
                                                                [is_active] => 1
                                                                [position] => 4
                                                                [level] => 4
                                                                [children] => Array
                                                                    (
                                                                    )
                                                            )
                                                        [4] => Array
                                                            (
                                                                [category_id] => 52
                                                                [parent_id] => 46
                                                                [name] => Gitaar gig bags
                                                                [is_active] => 1
                                                                [position] => 5
                                                                [level] => 4
                                                                [children] => Array
                                                                    (
                                                                    )
                                                            )
                                                        [5] => Array
                                                            (
                                                                [category_id] => 53
                                                                [parent_id] => 46
                                                                [name] => Pedalboards
                                                                [is_active] => 1
                                                                [position] => 6
                                                                [level] => 4
                                                                [children] => Array
                                                                    (
                                                                    )
                                                            )
                                                        [6] => Array
                                                            (
                                                                [category_id] => 48
                                                                [parent_id] => 46
                                                                [name] => Amp Utility Vehicles
                                                                [is_active] => 1
                                                                [position] => 7
                                                                [level] => 4
                                                                [children] => Array
                                                                    (
                                                                    )
                                                            )
                                                    )
                                            )
                                        [1] => Array
                                            (
                                                [category_id] => 67
                                                [parent_id] => 40
                                                [name] => Percussie koffer
                                                [is_active] => 1
                                                [position] => 2
                                                [level] => 3
                                                [children] => Array
                                                    (
                                                        [0] => Array
                                                            (
                                                                [category_id] => 73
                                                                [parent_id] => 67
                                                                [name] => Tom koffer
                                                                [is_active] => 1
                                                                [position] => 1
                                                                [level] => 4
                                                                [children] => Array
                                                                    (
                                                                    )
                                                            )
.......

......

>> it goes like this based on the number of categories

我如何获得像这样的上述简单数组

array('2' => 'Koffersenkisten','40'=> 'Muziek'...........etc); where 2 is the category_id and Koffersenkisten is the name

此函数遍历所有项,并在找到子项时递归。它在每次调用时传递输出数组并附加到它:

function get_cats(array &$output, array $arr)
{
        foreach ($arr as $item) {
                $output[$item['category_id']] = $item['name'];
                if (count($item['children'])) {
                        get_cats($output, $item['children']);
                }
        }
}
// start with empty result
$output = array();
get_cats($output, $a);
print_r($output);

这应该有效。没有测试它。

   $result = array();
   function buildArray($array, $stack)
   {
      foreach($array as $item)
      {
         $stack[$item['category_id']] = $item['name'];
         if(isset($item['children']) && count($item['children']) > 0)
           foreach($item['children'] as $child)
              buildArray($item['children'], &$stack);
      }
   }
   buildArray($array, &$result);
   print_r($result);
这是一个

递归解决方案(数组应该在$list之前,创建的数组将在调用 create 函数后处于$result):

function create($list, &$result) {
    if (is_array($list) && !isset($list['category_id'])) {
        foreach ($list as $element) {
            create($element, $result);
        }
    } else {
        $result[$list['category_id']] = $list['name'];
        create($list['children'], $result);
    }
}
create($list, $result);

另请参阅此示例。