<?php function my_compare($a, $b) { if ($a < $b) { return -1; } elseif ($a > $b) { return 1; } return 0; } $all = array('first' => 5, 'second' => 5); uasort($all, 'my_compare'); print_r($all);
You have javascript disabled. You will not be able to edit any code.