<PHP阵列参考
定义和用法
所述natcasesort()函数对通过使用阵列"natural order"算法。 值保持其原有的钥匙。
在自然的算法,数字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
)
<PHP阵列参考