PHP array merge from unknown number of parameters

我们两清 提交于 2019-12-01 11:04:45

问题


I have an PHP array looking like this:

$array['my_data']['value'] = 'some value';
$array['my_own_data']['value'] = 'another value';
$array['different_data']['value'] = 'another value';

I need to use array_merge in PHP or such. The problem is that the number of first level keys are unknown. It could be 150 items, I don't know.

This would not work for me because of the unknown number of keys:

array_merge($array['my_data'], $array['my_own_data'], $array['different_data']);

Do I need a loop or are there something fancy?


回答1:


This may do, if that's what you want:

$array = array_map('current', $array);

or possibly

$array = array_map(function ($a) { return $a['value']; }, $array);

This should give you

array('some value', 'another value', 'another value')



回答2:


The problem is that the number of first level keys are unknown. It could be 150 items, I don't know.

That's a problem easy to solve.

If you want to know the number of keys of the first level:

$numberOfKeysOfTheFirstLevel = count($array);

There you know the number now. If you need actually their names, you can do so as well:

$keyNamesOfTheFirstLevel = array_keys($array);

So then you continued in your question:

This would not work for me because of the unknown number of keys: array_merge($array['my_data'], $array['my_own_data'], $array['different_data']);

The good news is, you don't need to know the number of keys to perform your array_merge operation:

call_user_func_array('array_merge', $array);

So regarding to what you wrote about in your question, this should answer it. However the result might not be what you expected. See the other answers as well please and please ask.




回答3:


Please try this:

$new_array = array();
foreach($array as $item) {
  $new_array[] = $item['value'];
};



回答4:


// 1. your array should have different keys, otherwise it will have no effect
$array['my_data']['value1'] = 'some value';
$array['my_own_data']['value2'] = 'another value';
$array['different_data']['value3'] = 'another value';

$result = call_user_func_array('array_merge', $array);

will return

array(
  'value1' => 'some value', 
  'value2' => 'another value', 
  'value3' => 'another value', 
)

Otherwise, did you wanted something like this ?

array(
  'value' => array('some value', 'another value', 'another value')
)

Then you could do

$array['my_data']['value'] = 'some value';
$array['my_own_data']['value'] = 'another value';
$array['different_data']['value'] = 'another value';

$result = array();
// PHP <= 5.2
array_walk($array, create_function('&$item, $key, &$dest', '
    foreach ((array) $item as $subKey => $value) {
        if (!isset($dest[$subKey])) { $dest[$subKey] = array(); }
        $dest[$subKey][] = $value;
    }
'), & $result);
var_export($result);



回答5:


If I understand what you want, you could use array_map.

To change:

$a = array();
$a['x']['value'] = 1;
$a['y']['value'] = 3;
$a['z']['value'] = 3;

into:

array(3) {
 ["x"]=>
 int(1)
 ["y"]=>
 int(2)
 ["z"]=>
 int(3)
}

You could define a function:

function f($x) { return $x['value'];}

and use array_map:

$b = array_map(f, $a);



回答6:


array_map(function($a){
    return $a['value'];
},$array);

for php5.2 and older:

function stuff($a){
    return $a['value'];
}
array_map('stuff',$array);


来源:https://stackoverflow.com/questions/6747619/php-array-merge-from-unknown-number-of-parameters

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!