How can I implode() only one column from a multidimensional array?

冷暖自知 提交于 2019-12-20 02:04:20

问题


I have array in following format:

Array
(
    [sales] => Array
        (
            [0] => Array
                (
                    [0] => 1
                    [1] => 6
                )

            [1] => Array
                (
                    [0] => 2
                    [1] => 8
                )

            [2] => Array
                (
                    [0] => 3
                    [1] => 25
                )

            [3] => Array
                (
                    [0] => 4
                    [1] => 34
                )

        )

)

Using:

foreach ($data['sales'] as $k => $row) {
    $list = implode(",",$row);
}

I get the following as output:

1,62,83,254,34

But I only need the second values from each subArray. The expected result needs to be:

6,8,25,34

How can I remove the first set of values?


回答1:


I like array_column() but if you don't have PHP >= 5.5.0:

$list = implode(',', array_map(function($v) { return $v[1]; }, $data['sales']));

Or with the foreach:

foreach ($data['sales'] as $row) {
    $list[] = $row[1];
}
$list = implode(',', $list);



回答2:


Just grab the first column from your array with array_column(), so that you end up with an array, e.g.

Array (
    [0] => 6
    [1] => 8
    [2] => 25
    [3] => 34
)

And implode() it then as you already did, e.g.

echo implode(",", array_column($data["sales"], 1));

output:

6,8,25,34


来源:https://stackoverflow.com/questions/31946576/how-can-i-implode-only-one-column-from-a-multidimensional-array

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