dow56114 2015-01-17 18:53
浏览 64
已采纳

PHP如何转换关联数组?

I have an array which get from POST data

Array
(
    [date_from] => Array
        (
            [0] => 01/10/2015
            ...
        )

    [date_to] => Array
        (
            [0] => 01/11/2015
            ...
        )

    [price_eur] => Array
        (
            [0] => 8
            ...
        )

    [price_usd] => Array
        (
            [0] => 9
            ...
        )

)

And I want to transform it to:

Array
(
    [0] => Array
        (
            ['date_from']   => 01/10/2015
            ['date_to']     => 01/11/2015
            ['price_eur']   => 8
            ['price_usd']   => 9
        )

    ...
)

How to transform this php associative array?

  • 写回答

1条回答 默认 最新

  • dpyic24480 2015-01-17 18:58
    关注

    just freehanded this. let me know how it goes

    foreach ($original as $key => $arr){
        foreach ($arr as $x => $y){
            $new[$x][$key] = $y
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?