|
usortDescription
This function will sort an array by its values using a user-supplied comparison function. If the array you wish to sort needs to be sorted by some non-trivial criteria, you should use this function. The comparison function must return an integer less than, equal to, or greater than zero if the first argument is considered to be respectively less than, equal to, or greater than the second. If two members compare as equal, their order in the sorted array is undefined.
This example would display:
When sorting a multi-dimensional array, $a and $b contain references to the first index of the array. This example would display:
See also: uasort(), uksort(), sort(), asort(), arsort(), ksort() and rsort(). |
|||||||||||||||||||||||||
With any suggestions or questions please feel free to contact us |