PHP array sorting

Source: Internet
Author: User
PHP array sorting, read PHP array sorting, PHP array sorting is actually to sort the PHP array, in this article also is to sort the results set queried by the database. Sometimes the database query results cannot be directly used. for example, mysql and other results returned by an in statement must be sorted in some way. In this case, you need to sort the PHP array "> <LINKhref =" http://www.ph

PHP array sorting is actually sorting the PHP array. in this article, we also sort the result set queried by the database. Sometimes the database query results cannot be directly used. for example, mysql and other results returned by an in statement must be sorted in some way. In this case, you need to sort the PHP array. For sorting database results, see the following example:

In this example, each unit in the data array represents a row in a table. This is a typical way for databases to store array data.
The data in the example is as follows:
Volume | edition
------- + --------
67 | 2
86 | 1
85 | 6
98 | 2
86 | 6
67 | 7

All data is stored in an array named data. This is usually the result obtained from the database through a loop. for example, mysql_fetch_assoc () (in fact, you can think of this function as the same as mysql_fetch_assoc () function, for specific differences, see the key differences in the PHP Manual ).
$ Data [] = array ('Volume '=> 67, 'version' => 2 );
$ Data [] = array ('Volume '=> 86, 'version' => 1 );
$ Data [] = array ('Volume '=> 85, 'version' => 6 );
$ Data [] = array ('Volume '=> 98, 'version' => 2 );
$ Data [] = array ('Volume '=> 86, 'version' => 6 );
$ Data [] = array ('Volume '=> 67, 'version' => 7 );

In this example, we will sort volume in descending order and edition in ascending order.

Now we have an array containing rows, but array_multisort () needs an array containing columns. Therefore, we use the following code to obtain and sort columns.
// Retrieve the column list
Foreach ($ data as $ key => $ row ){
$ Volume [$ key] = $ row ['Volume '];
$ Edition [$ key] = $ row ['version'];
}

// Sort data by volume in descending order and edition in ascending order
// Use $ data as the last parameter and sort it by a common key
Array_multisort ($ volume, SORT_DESC, $ edition, SORT_ASC, $ data );

The data set is sorted as follows:
Volume | edition
------- + --------
98 | 2
86 | 1
86 | 6
85 | 6
67 | 2
67 | 7

In fact, there are still many ways to use in sorting, such as the arsort (), asort (), ksort (), krsort (), natsort (), natcasesort (), rsort (), usort (), array_multisort (), and uksort ().

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.