dongyongmin5711 2016-11-14 22:23 采纳率: 100%
浏览 27
已采纳

PHP - 为2D数组中的每个数组添加值

I don't really know how to explain what I would like to do, so here is an example. I have an 2D array, like this one :

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

    [1] => Array
    (
        [1] => value 1
        [2] => value 2
    )

    [2] => Array
    (
        [1] => value 1
        [2] => value 2
    )

)

And I would like to have this :

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

    [1] => Array
    (
        [1] => value 1
        [2] => value 2
        [3] => value 3
    )

    [2] => Array
    (
        [1] => value 1
        [2] => value 2
        [3] => value 3
    )

)

Can someone help me ? Thanks very much.

  • 写回答

1条回答 默认 最新

  • ds2010630 2016-11-14 22:36
    关注

    Just loop it and make sure to reference & the $val to update the original array. Then just append the new item:

    foreach($array as &$val) {
        $val[] = 'value 3';
    }
    

    The other way:

    foreach($array as $key => $val) {
        $array[$key][] = 'value 3';
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?