doulu2576 2018-06-13 18:31
浏览 38
已采纳

如何在php中结合2个多维数组?

I have 2 multidimensional arrays. I need the union of these arrays. Maybe there is a PHP array function to do this. I tried different ways with array_replace(), array_merge() but I couldn't figure it out. The length array are not fixed. The 2 arrays are:

$a = array(
  array(
    'division'=> 'Dhaka',
    'A'=> 0,
    'B'=> 0,
    'C'=> 0,
    'D'=> 0
  ),
  array(
    'division'=> 'Chittagong',
    'A'=> 0,
    'B'=> 0,
    'C'=> 0,
    'D'=> 0
  ),
  array(
    'division'=> 'Rajshahi',
    'A'=> 0,
    'B'=> 0,
    'C'=> 0,
    'D'=> 0
  ),
  array(
    'division'=> 'Mymensingh',
    'A'=> 0,
    'B'=> 0,
    'C'=> 0,
    'D'=> 0
  )
);
$b = array(
  array("division"=> "Dhaka", "A"=> 5, "B"=> 8),
  array("division"=> "Rajshahi", "A"=> 10, "C"=> 2)
);

The result should be:

$a = array(
      array(
        'division'=> 'Dhaka',
        'A'=> 5, //after union
        'B'=> 8, //after union
        'C'=> 0,
        'D'=> 0
      ),
      array(
        'division'=> 'Chittagong',
        'A'=> 0,
        'B'=> 0,
        'C'=> 0,
        'D'=> 0
      ),
      array(
        'division'=> 'Rajshahi',
        'A'=> 10, //after union
        'B'=> 0, //after union
        'C'=> 2,
        'D'=> 0
      ),
      array(
        'division'=> 'Mymensingh',
        'A'=> 0,
        'B'=> 0,
        'C'=> 0,
        'D'=> 0
      )
    );
  • 写回答

1条回答 默认 最新

  • dqkv0603 2018-06-13 18:34
    关注

    Since it's a multi-dimensional array, you need to replace recursively; but you also need identical string indexes. If division is unique then use that:

    $a = array_replace_recursive(array_column($a, null, 'division'),
                                 array_column($b, null, 'division'));
    

    If you want to get back to integer indexes then:

    $a = array_values(array_replace_recursive(array_column($a, null, 'division'),
                                              array_column($b, null, 'division')));
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于#flink#的问题:关于docker部署flink集成hadoop的yarn,请教个问题flink启动yarn-session.sh连不上hadoop
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 lammps拉伸应力应变曲线分析
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题