Sorting Array Values in PHP (Array Sorting)

Source: Internet
Author: User
Tags scalar

Copy codeThe Code is as follows: $ full_name = array ();
$ Full_name ["Roger"] = "Waters ";
$ Full_name ["Richard"] = "Wright ";
$ Full_name ["Nick"] = "Mason ";
$ Full_name ["David"] = "Gilmour ";

To sort this array, you just use the assort () function. this involves nothing more complex than typing the word asort, followed by round brackets. in between the round brackets, type in the name of your Associative array:Copy codeThe Code is as follows: asort ($ full_name );

The letter "a" tells PHP that the array is an Associative one. (If you don't have the "a" before "sort", your key names will turn in to numbers !). The "a" also tells PHP to sort by the Value, and NOT by the key. in our script above, the surnames will be sorted. if you want to sort using the Key, then you can use ksort () instead.

If you have a Scalar array (numbers as Keys), then you leave the "a" off. Like this:Copy codeThe Code is as follows: $ numbers = array ();
$ Numbers [] = "2 ";
$ Numbers [] = "8 ";
$ Numbers [] = "10 ";
$ Numbers [] = "6 ";
Sort ($ numbers );
Print $ numbers [0];
Print $ numbers [1];
Print $ numbers [2];
Print $ numbers [3];

The numbers are then sorted from lowest to highest. If you want to sort in reverse order then you need the following:

Rsort ()-Sorts a Scalar array in reverse order
Arsort ()-Sorts the Values in an Associative array in reverse order
Krsort ()-Sorts the Keys in an Associative array in reverse order

In the next part, we look at how to get a random value from an array.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.