Ich brauche dieses Array suchen:PHP Suche mehrdimensionales Array für Wert, legen Sie dann das Element am Anfang des Array
cars -
[0] -make : Ford
-model: Escort
-year: 1991
[1] -make: Honda
-model: Civic
-year: 1996
[2] -make: Vauxhall
-model: Astra
-year: 1972
Und wenn (zum Beispiel) ist das Modell „Civic“, statt dass ‚Auto‘ an Position 0.
So wäre das Ende Array sein wie:
cars -
[0] -make: Honda
-model: Civic
-year: 1996
[1] -make : Ford
-model: Escort
-year: 1991
[2] -make: Vauxhall
-model: Astra
-year: 1972
ich einige usort Variationen ausprobiert habe:
function typeSort($a, $b)
{
if ($a['model'] == 'Civic')
{
return 0;
}
return ($a['model'] < $b['model']) ? -1 : 1;
}
aber kehrt nur 1