How to implode subarrays in a 2-dimensional array?

我只是一个虾纸丫 提交于 2019-11-28 14:23:59

Just create a new array and set the elements (-;

<?php
...
$new_array = [];
foreach ($my_array as $key => $value)
     $new_array[$key] = is_array($value) ? implode(",", $value) : $value;

Just append values to new array:

$my_array = [
   "keywords" => "test",
   "locationId" => [ 0 => "1", 1 => "2"],
   "industries" => "1",
];
$new_Array = [];
foreach ($my_array as $value) {
    $new_Array[] = is_array($value) ? implode(",", $value) : $value;
}
print_r($new_Array);

And something that can be called a "one-liner"

$new_Array = array_reduce($my_array, function($t, $v) { $t[] = is_array($v) ? implode(",", $v) : $v; return $t; }, []);

Now compare both solutions and tell which is more readable.

You don't need to write/iterate a conditional statement if you type the strings (non-arrays) as single-element arrays before imploding them.

Code: (Demo)

$my_array = [
    "keywords" => "test",
    "locationId" => [ 0 => "1", 1 => "2"],
    "industries" => "1"
];

var_export(array_map(function($v){return implode(',',(array)$v);},$my_array));

Output:

array (
  'keywords' => 'test',
  'locationId' => '1,2',
  'industries' => '1',
)

Or if you prefer a foreach loop, this will provide the same result:

foreach($my_array as $k=>$v){
    $result[$k]=implode(',',(array)$v);
}
var_export($result);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!