To sort one-dimensional arrays, you can use asort, ksort, and other methods to sort processes, which is relatively simple. How can we sort two-dimensional arrays? You can use array_multisort and usort to implement it. The following is a small series of learning.
To sort one-dimensional arrays, you can use asort, ksort, and other methods to sort processes, which is relatively simple. How can we sort two-dimensional arrays? You can use array_multisort and usort to implement it. The following is a small series of learning.
For sorting two-dimensional arrays in PHP, you can use the PHP built-in function uasort ()
Example 1:
Sort the values in the array using the User-Defined comparison function and maintain the index Association
The callback function is as follows: when the return value of the callback function is negative or false, it indicates that the first parameter of the callback function is placed before and the second parameter is arranged after.
$ Person = array ('num' => '001', 'id' => 6, 'name' => 'hangsan ', 'age' => 21 ), array ('num' => '001', 'id' => 7, 'name' => 'ahangsan', 'age' => 23 ), array ('num' => '003 ', 'id' => 1, 'name' => 'bhangsan', 'age' => 23 ), array ('num' => '001', 'id' => 3, 'name' => 'dhangsan', 'age' => 23 ),); // negative or false indicates that the first parameter should be in the previous function sort_by_name ($ x, $ y) {return strcasecmp ($ x ['name'], $ y ['name']);}
Use:
Uasort ($ person, 'sort _ by_name ');
The following provides a two-dimensional array sorting method for reference and interview:
// $ Array the array to be sorted // $ row sort by column // $ type [asc or desc] // return the sorted array function array_sort ($ array, $ row, $ type) {$ array_temp = array (); foreach ($ array as $ v) {$ array_temp [$ v [$ row] = $ v ;} if ($ type = 'asc ') {ksort ($ array_temp);} elseif ($ type = 'desc') {krsort ($ array_temp );} else {} return $ array_temp ;}
Example 2:
To sort one-dimensional arrays, you can use asort, ksort, and other methods to sort processes, which is relatively simple. How can we sort two-dimensional arrays? Use array_multisort and usort to implement
For example, the following array:
The Code is as follows:
$ Users = array ('name' => 'Tom ', 'age' => 20), array ('name' => 'anny ', 'age' => 18), array ('name' => 'jack', 'age' => 22 ));
We hope to sort data by age size from small to large. I have sorted out two methods and shared them with you.
1. Use array_multisort
Using this method will be more troublesome. You need to extract the age and store it in a one-dimensional array, and then sort it in ascending order by age. The Code is as follows:
The Code is as follows:
$ Ages = array (); foreach ($ users as $ user) {$ ages [] = $ user ['age'];} array_multisort ($ ages, SORT_ASC, $ users );
After execution, $ users is the sorted array. You can print it out. If you want to sort by age in ascending order and then by name in ascending order, the method is the same as above, that is, to extract an array of names. The final sorting method is called as follows:
The Code is as follows:
Array_multisort ($ ages, SORT_ASC, $ names, SORT_ASC, $ users );
2. Use usort
The biggest advantage of using this method is that you can customize some complicated sorting methods. For example, sort by Name Length in descending order:
The Code is as follows:
Usort ($ users, function ($ a, $ B) {$ al = strlen ($ a ['name']); $ bl = strlen ($ B ['name']); if ($ al = $ bl) return 0; return ($ al> $ bl )? -1: 1 ;});
The anonymous function is used here. If necessary, it can be extracted separately. $ A and $ B can be understood as elements in the $ users array. You can directly index the name value, calculate the length, and then compare the length.
========================================================== ==================================
By the way, several PHP sorting functions
Sorting arrays by sort is generally applicable to one-dimensional index arrays without indexes.
Rsort uses the same reverse sorting method for arrays and sort.
Asort sorts the array and maintains the index relationship to sort the values. It is generally applicable to one-dimensional arrays and maintains the index relationship.
Arsort sorts arrays in reverse order and keeps the index relationship consistent with the asort usage.
Ksort sorts arrays by key names
Krsort sorts arrays in reverse order by key name