What we are introducing to you today is about The following is the description of the array_multisort function in the manual:
array_multisort() can be used to sort multiple PHP two-dimensional arrays at one time Sort to sort, or to sort a multidimensional array according to one or more dimensions.
Associative (string) key names remain unchanged, but numeric key names will be re-indexed.
The input array is treated as a table column and sorted by row - this is similar to the functionality of SQL's ORDER BY clause. The first array is the main array to be sorted. If the rows (values) in the array are compared to be the same, they are sorted according to the size of the corresponding value in the next input array, and so on.
As seen from the manual, PHP two-dimensional array sorting is to sort the first array and adjust the subsequent order. An array like this:
<ol class="dp-xml"> <li class="alt"><span><span>array( 'id' =</span><span class="tag"><strong><font color="#006699">></font></strong></span><span> array(1,3,2), </span></span></li> <li class=""> <span> 'data'=</span><span class="tag"><strong><font color="#006699">></font></strong></span><span>array('a','c','b')) </span> </li> </ol>
Just do multidimensional sorting by id and you're good to go. But many times, the array we construct looks like this:
<ol class="dp-xml"> <li class="alt"><span><span>array( </span></span></li> <li class=""> <span> array('id'=</span><span class="tag"><strong><font color="#006699">></font></strong></span><span>1,'data'=</span><span class="tag"><strong><font color="#006699">></font></strong></span><span>'a'), </span> </li> <li class="alt"> <span> array('id'=</span><span class="tag"><strong><font color="#006699">></font></strong></span><span>3,'data'=</span><span class="tag"><strong><font color="#006699">></font></strong></span><span>'c'), </span> </li> <li class=""> <span> array('id'=</span><span class="tag"><strong><font color="#006699">></font></strong></span><span>2,'data'=</span><span class="tag"><strong><font color="#006699">></font></strong></span><span>'b') </span> </li> <li class="alt"><span> ); </span></li> </ol>
The elements of PHP two-dimensional array sorting are arranged by rows, and they need to be sorted by one of the columns. PHP does not seem to provide a function similar to matrix transposition, so array_multisort cannot be used directly for multidimensional sorting. But you only need to extract the sorted column first and pass it to array_multisort as the first parameter.