About us Privacy Disclaimer Contact us
FAQ Help Advertising Feedback
Home Sitemap Search Donate us

  Home > Computer & I'net > Sorting Arrays...

   Browse by title articles:
   What is hot:

Accessing Arrays

Sorting Arrays

Push and Pop

Exploding and Imploding

Regular Expressions

Metacharacters

Digging for Links
Arrays Intro
Variables
An Intermediate Guide to Formal Visual Design
Prev articles12345678 9 101112Next articles



Sorting Arrays


Computer & I'net articlesSorting Arrays

by David Stanley    



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 :

<?php
$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

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

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

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

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

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

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 tomatoes
1 bananas
2 potatoes
3 bread
4 apples
5 oranges

If you reload this page, the above result will appear different.




-----------------
Article by David Stanley. Visit his site http://www.htmlite.com. Reprinted with permission.





Lease




  Disclaimer | Privacy | Terms of useCopyright © 2004 Nice2know.com