PHP 的 natsort() 函数

natsort() 函数用”自然排序”算法对数组进行排序。键值保留它们原始的键名。
在自然排序算法中,数字 2 小于 数字 10。在计算机排序算法中,10 小于 2,因为 “10” 中的第一个数字小于 2。

语法
:
natsort(array)
参数描述
array必需。规定要进行排序的数组。
返回值:若成功则返回 TRUE,若失败则返回 FALSE。
PHP 版本:4+
更新日志:自 PHP 5.2.10 起,当用 0 填充数字字符串时(例如 ‘00006’),将忽略 0。

natsort() 函数用自然顺序算法对给定数组中的元素排序。
natsort() 函数实现了“自然排序”,即数字从 1 到 9 的排序方法,字母从 a 到 z 的排序方法,短者优先。数组的索引与单元值保持关联。
如果成功,则该函数返回 TRUE,否则返回 FALSE。

示例:
<?php
$temp_files = array("temp15.txt","temp10.txt",
"temp1.txt","temp22.txt","temp2.txt");

sort($temp_files);
echo "标准排序:";
print_r($temp_files);
echo "<br>";

natsort($temp_files);
echo "自然排序:";
print_r($temp_files);
?>

输出结果:
标准排序:Array ( [0] => temp1.txt [1] => temp10.txt [2] => temp15.txt [3] => temp2.txt [4] => temp22.txt ) 
自然排序:Array ( [0] => temp1.txt [3] => temp2.txt [1] => temp10.txt [2] => temp15.txt [4] => temp22.txt )

如果你发现错误或有其他见解,请给 www.zhuei.cn 留言,我们会尽快更新本文!

发表评论

邮箱地址不会被公开。 必填项已用*标注