dsc862009 2019-03-14 07:12
浏览 57
已采纳

如何通过索引合并两个数组

I have two arrays .. first array like this :

$questions = [
    "type" => "form",
    "controls" => []
];

and second array is filled by foreach loop like this :

$count = 0;
foreach($x as $y){
    $controls [
        "id" => $y.$count,
        "id2" => $y.$count+1,
    ]

    $count++;
}

I want to merge all values from the second array to controls index from first array

any help please

  • 写回答

2条回答 默认 最新

  • douzhi9939 2019-03-14 07:14
    关注

    No need to merge, just put the result directly into the location you want them in the loop

    $questions = [
            "type" => "form",
            "controls" => []
        ];   
    
    $count = 0;
    foreach($x as $y){
        $questions['controls'][] =  ["id" => $y.$count,
                                     "id2" => $y.$count+1];
        $count++;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

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

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

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

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

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

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

客服 返回
顶部