Is there anyway to compare arrays in php using an inbuilt function, short of doing some sort of loop?
$a1 = array(1,2,3); $a2 = array(1,2,3); if (array_are_
Just check $a1 == $a2 -- what's wrong with that?
$a1 == $a2