PHP natsort() 函數(shù)
PHP natsort() 函數(shù)
實(shí)例
對(duì)數(shù)組進(jìn)行排序:
<?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);
?>
$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);
?>
運(yùn)行實(shí)例 ?
定義和用法
natsort() 函數(shù)用"自然排序"算法對(duì)數(shù)組進(jìn)行排序。鍵值保留它們?cè)嫉逆I名。
在自然排序算法中,數(shù)字 2 小于 數(shù)字 10。在計(jì)算機(jī)排序算法中,10 小于 2,因?yàn)?"10" 中的第一個(gè)數(shù)字小于 2。
語法
natsort(array)
參數(shù) | 描述 |
---|---|
array | 必需。規(guī)定要進(jìn)行排序的數(shù)組。 |
技術(shù)細(xì)節(jié)
返回值: | 如果成功則返回 TRUE,如果失敗則返回 FALSE。 |
---|---|
PHP 版本: | 4+ |
更新日志: | 自 PHP 5.2.10 起,當(dāng)用 0 填充數(shù)字字符串時(shí)(例如 '00006'),將忽略 0。 |
