From http://www.w3schools.com (Copyright Refsnes Data)
The uksort() function sorts an array by the element keys using user defined comparison function.
This function returns TRUE on success, or FALSE on failure.
This function is useful for sorting with custom algorithms.
uksort(array,sorttype) |
Parameter | Description |
---|---|
array | Required. Specifies the array to sort |
function | Required. A user specified function.
The function must return -1, 0, or 1 for this method to work correctly. It should be written to accept two parameters to compare, and it should work something like this:
|
<?php function my_sort($a, $b) { if ($a == $b) return 0; return ($a > $b) ? -1 : 1; } $people = array("Swanson" => "Joe", "Griffin" => "Peter", "Quagmire" => "Glenn", "swanson" => "joe", "griffin" => "peter", "quagmire" => "glenn"); uksort($people, "my_sort"); print_r ($people); ?> |
The output of the code above will be:
Array ( [swanson] => joe [quagmire] => glenn [griffin] => peter [Swanson] => Joe [Quagmire] => Glenn [Griffin] => Peter ) |
From http://www.w3schools.com (Copyright Refsnes Data)