Sorting array Values in PHP (array sort) _php tips

Source: Internet
Author: User
Tags array sort scalar sorts
Copy Code code 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 is the complex than typing the word asort, followed by round brackets. In between the round brackets, type in the name of your associative array:
Copy Code code as follows:

Asort ($full _name);

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

If you are have a Scalar array (numbers as Keys), then you leave the "a" off. Like this:
Copy Code code 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 are want to sort in reverse order then you need the following:

Rsort () –sorts a Scalar array in reverse order
Arsort ()-Sorts the Values in a associative array in reverse order
Krsort ()-Sorts the Keys in a associative array in reverse order

In the "Next part", we look at the ' how ' 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.