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