I'm looking for a way to check if two arrays are identical, for example
  $a = array(
    '1' => 12,
    '3' => 14,
    '6' => 11
);
$b = array(
    '1' => 12,
    '3' => 14,
    '6' => 11
);
These two would be identical, but if a single value was changed, it would return false, I know I could write a function, but is there one already built?
 
     
    