doujingya1166 2015-09-16 07:53
浏览 36
已采纳

在多维关联数组中替换

supposing I have a multidimensional associative array:

    $haystack = 
         [
          "httpMethod" => "GET",
          "responseFormat" => "",
          "query" => [
            "uname" => "username",
            "pass" => "password"
             ]
          ];

And I have another simple array:

    $needle = [
        "username" => "123",
        "password" => "456"
    ];

My goal is to search the first one recursively where the value say "username", and replace it with the value from the second array.

So the Array returned of this would be:

$result = [
          "httpMethod" => "GET",
          "responseFormat" => "",
          "query" => [
            "uname" => "123",
            "pass" => "456"
             ]
          ];

What is the most effective most readable way to do that? knowing the haystack-array can be differently structured.

  • 写回答

2条回答 默认 最新

  • doukoumi3389 2015-09-16 08:06
    关注

    Try array_walk_recursive(), any key that holds an array will not be passed to the function.

    array_walk_recursive( $haystack, function( &$item, $key ) use ( $needle ) {
    
        if ( array_key_exists( $item, $needle ) )
            $item = $needle[ $item ];
    
    });
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部