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

5, 1, 1, 3, 3, 7, 5, 4, 4, 4,
1, 1, 3, 3, 4, 4, 4, 5, 5, 7,
7, 5, 5, 4, 4, 4, 3, 3, 1, 1,


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ą