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 slaris 系统断电后,重新开机后一直自动重启
  • ¥15 51寻迹小车定点寻迹
  • ¥15 谁能帮我看看这拒稿理由啥意思啊阿啊
  • ¥15 关于vue2中methods使用call修改this指向的问题
  • ¥15 idea自动补全键位冲突
  • ¥15 请教一下写代码,代码好难
  • ¥15 iis10中如何阻止别人网站重定向到我的网站
  • ¥15 滑块验证码移动速度不一致问题
  • ¥15 Utunbu中vscode下cern root工作台中写的程序root的头文件无法包含