duandu5846 2016-10-12 15:09
浏览 66
已采纳

无论顺序如何,检查关联的多维数组是否相等

The two arrays are considered equal since they have the same 1st dimension indexes (Electric, Gas, Water) the same 2nd dimension indexes (Gym, Library), and the same values for each intersect. The values will always be literals and not arrays or objects. Order doesn't mater.

How can PHP verify that they are equal based on the above definition of equality?

Array
(
    [Electric] => Array
        (
            [Gym] => 24
            [Library] => 25
        )

    [Gas] => Array
        (
            [Gym] => 13
            [Library] => 
        )

    [Water] => Array
        (
            [Gym] => 
            [Library] => 
        )

)
Array
(
    [Gas] => Array
        (
            [Library] => 
            [Gym] => 13
        )

    [Electric] => Array
        (
            [Gym] => 24
            [Library] => 25
        )

    [Water] => Array
        (
            [Library] => 
            [Gym] => 
        )

)

EDIT. My attempt is as follows...

if(count($arr1) != count($arr2) || array_diff($arr1, $arr2) !== array_diff($arr2, $arr1)) {
  $error='Values do not match.';
}
  • 写回答

5条回答 默认 最新

  • dousuize3082 2016-10-12 15:42
    关注

    Here's a recursive comparison function

    function CompareRecursive($array1, $array2, &$mismatches) {
        foreach ($array1 as $key => $value) {
            if (!isset($array2[$key])) { 
                $mismatches[$key] = [ $value ];
                continue;
            } 
    
            $value2 = $array2[$key];  
            if (!is_array($value) || !is_array($value2)) {                
                if ($value != $value2) {
                    $mismatches[$key] = [
                        $value, $value2
                    ];
                }
            } else {
                $mismatches_internal = [];
                CompareRecursive($value, $value2, $mismatches_internal);
                if (!empty($mismatches_internal)) {
                    $mismatches[$key] = $mismatches_internal;
                }
            } 
        }
        return empty($mismatches);
    }
    

    As an added bonus this keeps track of mismatched entries too, there's a drawback when using this method that it won't work if $array2 has extra elements that $array1 doesn't but you can resolve this by doing:

    $isEqual = CompareRecursive($array1,$array2) && CompareRecursive($array2,$array1);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥15 有偿四位数,节约算法和扫描算法
  • ¥15 VUE项目怎么运行,系统打不开
  • ¥50 pointpillars等目标检测算法怎么融合注意力机制
  • ¥15 关于超局变量获取查询的问题
  • ¥20 Vs code Mac系统 PHP Debug调试环境配置
  • ¥60 大一项目课,微信小程序
  • ¥15 求视频摘要youtube和ovp数据集
  • ¥15 在启动roslaunch时出现如下问题
  • ¥15 汇编语言实现加减法计算器的功能
  • ¥20 关于多单片机模块化的一些问题