What the title says. Specifically if I have
$array1['name'] = 'zoo';
$array2['name'] = 'fox';
How can I determine that alphabetically $array2's name should come above $array1's?
|
|
|
Use nb. You probably want to use |
||||
|
|
|
You can compare both strings with
|
|||
|
|
|
EDIT just realised values from different arrays, could array_merge first but not sure thats what you want |
|||
|
|
|
I often use natsort ( Natural Sort http://php.net/manual/en/function.natsort.php ), since I usually just want to preserve the array for later use anyway. natsort($unsorted_array); var_dump($usorted_array); // will now be sorted. |
|||
|
|