目录

PHP ksort() 函数

❮ PHP 数组参考

示例

根据键对关联数组进行升序排序:

<?php
$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");
ksort($age);
?>
亲自试一试 »

定义和用法

ksort() 函数根据键对关联数组进行升序排序。

提示:使用排序()函数根据键对关联数组进行降序排序。

提示:使用分类()函数根据值对关联数组进行升序排序。

语法

ksort( array, sorttype)

参数值

Parameter Description
array Required. Specifies the array to sort
sorttype Optional. Specifies how to compare the array elements/items. Possible values:
  • 0 = SORT_REGULAR - Default. Compare items normally (don't change types)
  • 1 = SORT_NUMERIC - Compare items numerically
  • 2 = SORT_STRING - Compare items as strings
  • 3 = SORT_LOCALE_STRING - Compare items as strings, based on current locale
  • 4 = SORT_NATURAL - Compare items as strings using natural ordering
  • 5 = SORT_FLAG_CASE -


技术细节

返回值: 成功则为真。失败时为 FALSE
PHP 版本: 4+

❮ PHP 数组参考