Say I have two complex nested arrays in PHP, like these:
$a = array(
"x" => array(4, 5, 6),
"y" => array("z" => "foo", "q" => "bar")
);
$b = array(
"y" => array("q" => "bar", "z" => "foo"),
"x" => array(4, 5, 6)
);
(In this case, they're decoded JSON data from different sources). Assume the contents can be arbitrarily nested, but will not contain any circular references.
What's the most straightforward way to check if they are equal, ignoring key ordering? For example, the above two should compare equal. However, if $b["x"] were array(4, 6, 5) they would not be.
I could recursively ksort and compare the results, but I don't really want to modify either operand, and this seems like something that might have a simple one-line solution I don't know about. Is there anything out there?
$a == $bwould work fine without concern for order. – bob-the-destroyer May 25 '12 at 0:06$a == $bis actually true in your above first example because order is not factored in for this type of non-strict comparison between arrays, not even in nested arrays. Basically, if key exists in both arrays and the value is the same, it's at least loosely equal. Throwing inarray(4, 6, 5)to the mix would mean it would no longer loosely equalarray(4, 5, 6)because numerical index=>value is now completely different between the arrays. If you did$a === $b, then yes, because array ordering is now strictly checked, it would be false anyway. – bob-the-destroyer May 26 '12 at 19:32