Home > Article > Backend Development > php array_multisort Detailed explanation and examples of sorting arrays
This article mainly introduces the detailed explanation and example code of php array_multisort for sorting arrays. Friends who need it can refer to
The array_multisort() function in php can be used to sort multiple arrays at once. Sort an array, or sort a multidimensional array according to one or more dimensions. This article explains to you how to use the array_multisort function.
The array_multisort() function returns a sorted array. You can enter one or more arrays. The function sorts the first array first, then the other arrays, and if two or more values are the same, it sorts the next array.
Notes: String key names will be preserved, but numeric key names will be re-indexed, starting at 0 and increasing by 1.
Notes: You can set the sort order and sort type parameters after each array. If not set, each array parameter will use its default value.
Syntax
array_multisort(array1,sorting order,sorting type,array2,array3...)
Parameter description
Description | |
---|---|
Required. The one to sort. | |
Optional. Specify the order of sorting. Possible values:
|
|
Optional. Specifies the sorting type. Possible values:
|
|
Optional. Specifies an array. | |
Optional. Specifies an array. |
Return value
Returns TRUE on success, or FALSE on failure. Descriptionarray_multisort() function sorts multiple arrays or multidimensional arrays. The array in the parameter is treated as a table column and sorted by row - this is similar to the function of SQL's ORDER BY clause. The first array is the main array to be sorted. If the rows (values) in the array compare to be the same, they will be sorted according to the size of the corresponding value in the next input array, and so on. The first parameter is an array, and each subsequent parameter may be an array or one of the following sort order flags (the sort flag is used to change the default sort order): SORT_ASC - Default, sort in ascending order. (A-Z)SORT_DESC - Sort in descending order. (Z-A)
SORT_NUMERIC - Sort each item in numerical order.
SORT_STRING - Sort each item in alphabetical order.
<?php $ar = array( array("10",11,100,100,"a"), array(1,2,"2",3,1) ); array_multisort($ar[0], SORT_ASC,SORT_STRING,$ar[1],SORT_NUMERIC,SORT_DESC); var_dump($ar); ?>
array(2) { [0]=> array(5) { [0]=> string(2) "10" [1]=> int(100) [2]=> int(100) [3]=> int(11) [4]=> string(1) "a" } [1]=> array(5) { [0]=> int(1) [1]=> int(3) [2]=> string(1) "2" [3]=> int(2) [4]=> int(1) } }
##Example 2:
SORT_STRING and SORT_REGULAR are case-sensitive, and uppercase letters will be sorted before lowercase letters.
<?php $array=array('Alpha','atomic','Beta','bank'); $array_lowercase=array_map('strtolower',$array); array_multisort($array_lowercase,SORT_ASC,SORT_STRING,$array); print_r($array); ?>
Run result:
Array ( [0] => Alpha [1] => atomic [2] => bank [3] => Beta )
The above is the entire content of this article, I hope it will be helpful to everyone's study.
Related recommendations:
##PHP implements the online calculator function
The above is the detailed content of php array_multisort Detailed explanation and examples of sorting arrays. For more information, please follow other related articles on the PHP Chinese website!