Ich habe ein Array wie dieses:
Code:
$a[] = array("a1" => "value", "a2" => "value");
$a[] = array("a1" => "value", "a2" => "value");
$a[] = array("a1" => "value", "a2" => "value");
$a[] = array("a1" => "value", "a2" => "value");
...
Nun möchte ich $a z.B. nach "a2" sortieren, d.h. ich möchte $a mit foreach so ausgeben, dass das Element von $a, was "a2" => "A" hat eher ausgegeben wird als das Element, das "a2" => "B" hat.