简体   繁体   English

如何从复杂的多维数组中获取所有值?

[英]How to get all values from complex multi-dimensional array?

I have the following multi-dimensional array 我有以下多维数组

 $sample = array( '1232' => 'Nokia 72', '234' => array( '534' => 'Samsung 58', '345' => 'Samsung 64' ), '3445' => 'Micromax 1542c', '542' => array( '4645' => 'LG 58', '5765' => 'LG 64' ) ); 

Now, I want to collect only values of every values of each section. 现在,我只想收集每个部分的每个值的值。

My output should be like below 我的输出应如下所示

 Array ( [0] => Nokia 72 [1] => Samsung 58 [2] => Samsung 64 [3] => Micromax 1542c [4] => LG 58 [5] => LG 64 ) 

I don't want to do it with foreach function. 我不想用foreach函数。

You can do it by using 您可以通过使用

 array_walk_recursive($sample, create_function('$val, $key, $obj', 'array_push($obj, $val);'), &output); 

You can also get some more reference from below link 您还可以从下面的链接中获取更多参考

How-to-filter-only-values-from-complex-multi-dimensional-array 如何对滤波器只值从-复多维阵列

$sample = array(
        '1232' => 'Nokia 72',
        '234' => array(
                    '534' => 'Samsung 58',
                    '345' => 'Samsung 64'
                  ),
        '3445' => 'Micromax 1542c',
        '542' => array(
                    '4645' => 'LG 58',
                    '5765' => 'LG 64'
                  )
      );

array_walk_recursive($sample, function($a) use (&$return) { $return[] = $a; });

var_dump($return);

Output: 输出:

array(6) { [0]=> string(8) "Nokia 72" [1]=> string(10) "Samsung 58" [2]=> string(10) "Samsung 64" [3]=> string(14) "Micromax 1542c" [4]=> string(5) "LG 58" [5]=> string(5) "LG 64" } 

Here is a PHP Sandbox with the demo: http://sandbox.onlinephpfunctions.com/ 这是带有演示的PHP沙箱: http : //sandbox.onlinephpfunctions.com/

This solution uses array_walk_recursive() and PHP anonymous functions. 该解决方案使用array_walk_recursive()和PHP匿名函数。

http://php.net/array_walk_recursive http://php.net/array_walk_recursive

http://php.net/manual/en/functions.anonymous.php http://php.net/manual/en/functions.anonymous.php

RecursiveIteratorIterator it returns a flattened array when you used with iterator_to_array function. RecursiveIteratorIterator在与iterator_to_array函数一起使用时会返回一个展平的数组。

Demo

$sample = array(
        '1232' => 'Nokia 72',
        '234' => array(
                    '534' => 'Samsung 58',
                    '345' => 'Samsung 64'
                  ),
        '3445' => 'Micromax 1542c',
        '542' => array(
                    '4645' => 'LG 58',
                    '5765' => 'LG 64'
                  )
      );

$it =  new RecursiveIteratorIterator(new RecursiveArrayIterator($sample));
$l = iterator_to_array($it, false);
echo '<pre>';print_r($l);echo '</pre>';

If you want to implement it on your own with a recursive function: 如果要使用递归函数自行实现它:

$sample = array(
        '1232' => 'Nokia 72',
        '234' => array(
            '534' => 'Samsung 58',
            '345' => 'Samsung 64'
            ),
        '3445' => 'Micromax 1542c',
        '542' => array(
            '4645' => 'LG 58',
            '5765' => 'LG 64'
            )
        );

// This recursive function changes the original values!
function walk(&$multi_dim_array, &$flat_array)
{
    while (sizeof($multi_dim_array) > 0)
    {
        // Take the first element
        $curr_value = array_shift($multi_dim_array);
        // If this item is an array go one step deeper
        if (is_array($curr_value))
            walk($curr_value, $flat_array);
        else
            // The current value is not an array
            // append it to the flattened array
            $flat_array[] = $curr_value;
    }
}

$values = [];
walk($sample, $values);
print_r($values);

Outputs 输出

Array ( [0] => Nokia 72 [1] => Samsung 58 [2] => Samsung 64 [3] => Micromax 1542c [4] => LG 58 [5] => LG 64 )

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM