natcasesort() 函數以"自然排序"演算法對陣列進行排序。鍵值保留它們原始的鍵名。
在自然排序演算法中,數字2 小於數字10。在計算機排序演算法中,10 小於2,因為"10" 中的第一個數字小於2。
此函數不區分大小寫。
如果成功,函數傳回TRUE,如果失敗則傳回FALSE。
natcasesort(array)
參數 | 描述 |
---|---|
array | 必需。規定要進行排序的陣列。 |
<?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);?>
上面程式碼將輸出:
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)