Sorting means organizing a bunch of values in alphabetical or numerical order. PHP can be used to sort an array by it's keys or values. The result can keep the corresponding key/value with the original value/key or replace them. That sounds a bit confusing, so here are the examples to sort it out (couldn't resist the pun).
Here is a sample array to start things off :
Use the sort command to sort the values with no regard to the keys. The values only will be changed.
The pantry array now looks like this...
The values have changed places into alphabetical order while the keys remain in the same order.
To sort the values in reverse order with no regard to the keys, the rsort command is used.
The pantry array now looks like this...
The values have changed places into alphabetical order while the keys remain in the same order.
To sort the values and keep the corresponding keys, the asort command is used.
The pantry array now looks like this...
A similar sorting with keys technique can also be done in the reverse order using the arsort command.
The pantry array now looks like this...
To sort the keys and keep the values, the ksort command is used.
The pantry array now looks like this...
In this case, it remains the same as the original array considering the keys were already in numerical order.
To sort the keys and keep the values in reverse order, the krsort command is used.
The pantry array now looks like this...
The shuffle command is used to randomly reorganize the values of an array. The keys remain the same.
The pantry array now looks like this...
If you reload this page, the above result will appear different.
Here is a sample array to start things off :
<?php
$pantry = array(
0 => "tomatoes",
1 => "oranges",
2 => "bananas"
3 => "potatoes",
4 => "bread",
5 => "apples"
);
?>
$pantry = array(
0 => "tomatoes",
1 => "oranges",
2 => "bananas"
3 => "potatoes",
4 => "bread",
5 => "apples"
);
?>
Use the sort command to sort the values with no regard to the keys. The values only will be changed.
sort($pantry);
The pantry array now looks like this...
0 apples
1 bananas
2 bread
3 oranges
4 potatoes
5 tomatoes
1 bananas
2 bread
3 oranges
4 potatoes
5 tomatoes
The values have changed places into alphabetical order while the keys remain in the same order.
To sort the values in reverse order with no regard to the keys, the rsort command is used.
rsort($pantry);
The pantry array now looks like this...
0 tomatoes
1 potatoes
2 oranges
3 bread
4 bananas
5 apples
1 potatoes
2 oranges
3 bread
4 bananas
5 apples
The values have changed places into alphabetical order while the keys remain in the same order.
To sort the values and keep the corresponding keys, the asort command is used.
asort($pantry);
The pantry array now looks like this...
5 apples
2 bananas
4 bread
1 oranges
3 potatoes
0 tomatoes
2 bananas
4 bread
1 oranges
3 potatoes
0 tomatoes
A similar sorting with keys technique can also be done in the reverse order using the arsort command.
arsort($pantry);
The pantry array now looks like this...
0 tomatoes
3 potatoes
1 oranges
4 bread
2 bananas
5 apples
3 potatoes
1 oranges
4 bread
2 bananas
5 apples
To sort the keys and keep the values, the ksort command is used.
ksort($pantry);
The pantry array now looks like this...
0 tomatoes
1 oranges
2 bananas
3 potatoes
4 bread
5 apples
1 oranges
2 bananas
3 potatoes
4 bread
5 apples
In this case, it remains the same as the original array considering the keys were already in numerical order.
To sort the keys and keep the values in reverse order, the krsort command is used.
krsort($pantry);
The pantry array now looks like this...
5 apples
4 bread
3 potatoes
2 bananas
1 oranges
0 tomatoes
4 bread
3 potatoes
2 bananas
1 oranges
0 tomatoes
The shuffle command is used to randomly reorganize the values of an array. The keys remain the same.
shuffle($pantry);
The pantry array now looks like this...
0 apples
1 bread
2 tomatoes
3 oranges
4 bananas
5 potatoes
1 bread
2 tomatoes
3 oranges
4 bananas
5 potatoes
If you reload this page, the above result will appear different.

