Quick question about PHP associative arrays.
Say there are two arrays:
$A = array("AAA" => "45", "FFF" => "108", "GGG" => "15");
and
$B = array("FFF" => "108", "GGG" => "15", "AAA" => "45");
Are these arrays equal? Does the position of an entry in associative arrays matter?