Sorting Array Values in PHP

Source: Internet
Author: User
Tags scalar
There may times when you want to sort the values inside a array. For example, suppose your array values is not in alphabetical order. Like this one:

$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 to complex than typing the word asort, followed by round brackets. In between the round brackets, type in the name of the Your associative array:

Asort ($full _name);

The letter "A" tells PHP, the array is an 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 not by the key. In our script above, the surnames would be sorted. If you want to sort using the Key, then you can use Ksort () instead.

If you had a Scalar array (numbers as Keys), then you leave the "a" off. Like this:

$numbers = Array (), $numbers []= "2"; $numbers []= "8"; $numbers []= "; $numbers []=" 6 "; sort ($numbers);p rint $numbers [0]; Print $numbers [1];p rint $numbers [2];p rint $numbers [3];

The numbers is then sorted from lowest to highest. If you want to sort in reverse order and 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 section, we look at how to get a random value from an array.

  • Related Article

    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.