数组
在线手册:中文  英文

Sorting Arrays

PHP has several functions that deal with sorting arrays, and this document exists to help sort it all out.

The main differences are:

Sorting function attributes
Function name Sorts by Maintains key association Order of sort Related functions
array_multisort() value associative yes, numeric no first array or sort options array_walk()
asort() value yes low to high arsort()
arsort() value yes high to low asort()
krsort() key yes high to low ksort()
ksort() key yes low to high asort()
natcasesort() value yes natural, case insensitive natsort()
natsort() value yes natural natcasesort()
rsort() value no high to low sort()
shuffle() value no random array_rand()
sort() value no low to high rsort()
uasort() value yes user defined uksort()
uksort() key yes user defined uasort()
usort() value no user defined uasort()


数组
在线手册:中文  英文

用户评论:

"Matthew Rice" (2013-05-17 20:28:34)

While this may seem obvious, user-defined array sorting functions ( uksort(), uasort(), usort() ) will *not* be called if the array does not have *at least two values in it*.

The following code:                        

<?php

function usortTest($a$b) {
    
var_dump($a);
    
var_dump($b);
    return -
1;
}

$test = array('val1');
usort($test"usortTest");

$test2 = array('val2''val3');
usort($test2"usortTest");

?>

Will output: 

string(4) "val3"
string(4) "val2"

The first array doesn't get sent to the function.

Please, under no circumstance, place any logic that modifies values, or applies non-sorting business logic in these functions as they will not always be executed.

oculiz at gmail dot com (2011-03-12 09:57:30)

Another way to do a case case-insensitive sort by key would simply be:

<?php
uksort
($array'strcasecmp');
?>

Since strcasecmp is already predefined in php it saves you the trouble to actually write the comparison function yourself.

K.i.n.g.d.r.e.a.d (2010-04-06 06:29:50)

If you search a feature which sorts an array incasesensitive by key, try this:

<?php
function isort($a,$b) {
    return 
strtolower($a)>strtolower($b);
}
uksort($array"isort");
?>

Dirk (2010-03-29 13:32:56)

If you need to perform any of these sort functions on an array containing two or more equivalent values, you can get the equivalents to fall next to each other within the overall ordering (similar to how MySQL's ORDER BY works...) instead of breaking the sort() function, by using ksort() as a second parameter to arbitrarily distinguish any equivalent values by their unique keys:

<?php

sort
($arrayksort($array));

?>

Seems like this effect should be built in.  At least the workaround is so short...

易百教程