<PHP Array Reference
Definicja i Wykorzystanie
natcasesort() funkcja sortuje tablicę za pomocą "natural order" algorytm. Wartości zachować swoje oryginalne klucze.
W algorytmie naturalnego, numer 2 jest mniejsza niż liczba 10. W komputerowym sortowania, 10 jest mniejsza niż 2, ponieważ pierwszy numer "10" jest mniejszy niż 2.
Funkcja ta jest od wielkości liter.
Funkcja ta zwraca TRUE w przypadku powodzenia, FALSE w przypadku porażki.
Składnia
natcasesort(array)
Parametr | Opis |
---|---|
array | Wymagany. Określa tablicę sortowania |
Przykład
<?php
$temp_files = array("temp15.txt","Temp10.txt",
"temp1.txt","Temp22.txt","temp2.txt");
natsort($temp_files);
echo "Natural order: ";
print_r($temp_files);
echo "<br />";
natcasesort($temp_files);
echo "Natural order case insensitve: ";
print_r($temp_files);
?>
Wyjście z kodem powyżej będą:
Natural order:
Array
(
[0] => Temp10.txt
[1] => Temp22.txt
[2] => temp1.txt
[4] => temp2.txt
[3] => temp15.txt
)
Natural order case insensitve:
Array
(
[2] => temp1.txt
[4] => temp2.txt
[0] => Temp10.txt
[3] => temp15.txt
[1] => Temp22.txt
)
<PHP Array Reference