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

3, 9, 8, 3, 9, 5, 7, 7, 10, 10,
3, 3, 5, 7, 7, 8, 9, 9, 10, 10,
10, 10, 9, 9, 8, 7, 7, 5, 3, 3,


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ą