Przykład kodu źródłowego zawierającego sortowanie wygenerowanych liczb:

9, 9, 5, 8, 3, 4, 7, 3, 2, 7,
2, 3, 3, 4, 5, 7, 7, 8, 9, 9,
9, 9, 8, 7, 7, 5, 4, 3, 3, 2,


Array ( [marka] => FIAT [kolor] => white [przebieg] => 7000 [lata] => 2 )
Sortowanie:
Array ( [lata] => 2 [przebieg] => 7000 [marka] => FIAT [kolor] => white )
Sortowanie wg. klucza:
Array ( [kolor] => white [lata] => 2 [marka] => FIAT [przebieg] => 7000 )

Powrót do lekcji.


Powrót na stronę główną