PHP natcasesort() 函數(shù)
PHP natcasesort() 函數(shù)

定義和用法
natcasesort() 函數(shù)用"自然排序"算法對數(shù)組進(jìn)行排序。鍵值保留它們原始的鍵名。
在自然排序算法中,數(shù)字 2 小于 數(shù)字 10。在計(jì)算機(jī)排序算法中,10 小于 2,因?yàn)?"10" 中的第一個(gè)數(shù)字小于 2。
該函數(shù)不區(qū)分大小寫。
如果成功,該函數(shù)返回 TRUE,如果失敗則返回 FALSE。
語法
natcasesort(array)
參數(shù) | 描述 |
---|---|
array | 必需。規(guī)定要進(jìn)行排序的數(shù)組。 |
實(shí)例
<?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);
?>
$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);
?>
上面代碼將輸出:
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
)
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
)
