最新的Web開發教程
 

PHP natcasesort() Function


<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陣列參考