PHP implements multi-dimensional array sorting function sharing for specified fields. multi-dimensional array _ PHP Tutorial

Source: Internet
Author: User
PHP implements multi-dimensional array sorting function sharing for specified fields. PHP implements multi-dimensional array sorting function sharing for specified fields. for multi-dimensional array PHP array sorting, you can use the array_multisort method, in addition, we need to specify PHP in the array to implement multi-dimensional array sorting function sharing for the specified field, multi-dimensional array

PHP array sorting can be implemented using the array_multisort method, but if it is a multi-dimensional array and we want to specify a field in the array for sorting, then we need to write our own method to achieve this. This article shares a piece of code for the multi-dimensional array sorting method of a field specified by PHP. this code can sort arrays by field fields.
The code is as follows:
Function sortArrByField (& $ array, $ field, $ desc = false ){
$ FieldArr = array ();
Foreach ($ array as $ k => $ v ){
$ FieldArr [$ k] = $ v [$ field];
}
$ Sort = $ desc = false? SORT_ASC: SORT_DESC;
Array_multisort ($ fieldArr, $ sort, $ array );
}

The above is the multi-dimensional array sorting method for fields specified by PHP. I hope this PHP code will help you.

The array_multisort method can be used to sort PHP arrays. However, if it is a multi-dimensional array, we need to specify the 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.