moin moin
ich habe folgendes Array:
Code:
$teams[0][punkte] = 12;
$teams[0][tordif] = 2;
$teams[1][punkte] = 12;
$teams[1][tordif] = 4;
$teams[2][punkte] = 16;
$teams[2][tordif] = -1;
bis jetzt sortieren ich so:
Code:
function multisort($a, $b)
{
if ($a[punkte] == $b[punkte]) return 0;
return ($a[punkte] < $b[punkte]) ? -1 : 1;
}
usort ($teams, "multisort");
Allerdings möchte ich nun die sortierung erweitern, das wenn die Pukte gleich sind, nach der Tordif. sortiert wird. Wie mache ich das am besten?
Gruß
fcg
.: Wer für alles offen ist, kann nicht ganz dicht sein! :.