natsort() 函式用自然順序算法對給定數組中的元素排序。
基本介紹
- 外文名:natsort
- 成功:函式返回 TRUE,否則返回 FALSE
- array:必需。規定要進行排序的數組。
- 方式:自然排序算法
定義和用法,語法,例子,
定義和用法
natsort() 函式實現了“自然排序”,即數字從 1 到 9 的排序方法,字母從 a 到 z 的排序方法,短者優先。數組的索引與單元值保持關聯。
如果成功,則該函式返回 TRUE,否則返回 FALSE。
語法
natsort(array) |
參數 | 描述 |
array | 必需。規定要進行排序的數組。 |
例子
本函式所用的自然排序算法,與通常的計算機字元串排序算法(用於 sort())的區別,見下面示例:
<?php $temp_files = array("temp15.txt","temp10.txt", "temp1.txt","temp22.txt","temp2.txt"); sort($temp_files); echo "Standard sorting: "; print_r($temp_files); echo "<br />"; natsort($temp_files); echo "Natural order: "; print_r($temp_files); ?> |
輸出:
Standard sorting: Array ( [0] => temp1.txt [1] => temp10.txt [2] => temp15.txt [3] => temp2.txt [4] => temp22.txt ) Natural order: Array ( [0] => temp1.txt [3] => temp2.txt [1] => temp10.txt [2] => temp15.txt [4] => temp22.txt ) |