Sorting Nested Arrays


 function sortNestedArray(&$a) {   sort($a);   for ($i = 0; $i < count($a); $i++) {     if (is_array($a[$i])) {       sortNestedArray($a[$i]);     }   } } 


The standard sorting functions of PHP have to give up when they work on nested arrays. However, if you use a recursive function, you can code this in just a few lines.

The goal is to sort an array that is nested, but consists only of numeric subarrays, so only numeric (and, therefore, useless) keys are used.

Sorting a Nested Array Using a Recursive Function (sortNestedArray.php)
 <pre> <?php   function sortNestedArray(&$a) {     sort($a);     for ($i = 0; $i < count($a); $i++) {       if (is_array($a[$i])) {         sortNestedArray($a[$i]);       }     }   }   $arr = array(     'French',     'Spanish',     array('British English', 'American English'),     'Portuguese',     array('Schwitzerdütsch', 'Deutsch'),     'Italian'   );   sortNestedArray($arr);   print_r($arr); ?> </pre> 

The idea is the following: Calling sort() does sort the array, but leaves out all subarrays. Therefore, for all elements that are arrays, the sorting function is called again, recursively. The preceding code shows this concept; Figure 2.4 shows the result for a sample array.

Figure 2.4. Sorting nested arrays.


NOTE

The PHP function array_multisort() is an alternative way to sort arrays with more than one dimension; however, it has a rather unusual parameter order.





PHP Phrasebook
PHP Phrasebook
ISBN: 0672328178
EAN: 2147483647
Year: 2005
Pages: 193

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net