PHP natcasesort() 函数

定义和用法

natcasesort() 函数用"自然排序"算法对数组进行排序。键值保留它们原始的键名。

在自然排序算法中,数字 2 小于 数字 10。在计算机排序算法中,10 小于 2,因为 "10" 中的第一个数字小于 2。

该函数对大小写不敏感。

如果成功,该函数返回 TRUE,如果失败则返回 FALSE。

语法

  1. natcasesort(array)
参数 描述
array 必需。规定要进行排序的数组。

实例

  1. <?php
  2. $temp_files = array("temp15.txt","Temp10.txt",
  3. "temp1.txt","Temp22.txt","temp2.txt");
  4.  
  5. natsort($temp_files);
  6. echo "自然排序:";
  7. print_r($temp_files);
  8. echo "<br />";
  9.  
  10. natcasesort($temp_files);
  11. echo "不区分大小写的自然排序:";
  12. print_r($temp_files);
  13. ?>

以上代码的输出:

  1. 自然排序:
  2.  
  3. Array
  4. (
  5. [0] => Temp10.txt
  6. [1] => Temp22.txt
  7. [2] => temp1.txt
  8. [4] => temp2.txt
  9. [3] => temp15.txt
  10. )
  11.  
  12. 不区分大小写的自然顺序:
  13.  
  14. Array
  15. (
  16. [2] => temp1.txt
  17. [4] => temp2.txt
  18. [0] => Temp10.txt
  19. [3] => temp15.txt
  20. [1] => Temp22.txt
  21. )