Quick Search:
 
 PHP Code: Recursively traverse array Jump to:  
Category: >> PHP Code >> Recursively traverse array  

<< lastnext >>

Snippet Name: Recursively traverse array

Description: A recursive function to traverse a multi-dimensional array
where the dimensions are not known.

Also see:
» Pre-populated List of Countries
» Array of all US states
» Search array elements for a substring
» Create a drop down menu from an array ...
» Unset unkown array element
» Parse RSS into array
» Quickly sort associative arrays
» Combining three arrays into one
» Combining two arrays into one
» Check if array is associative
» Unique Array function
» Pick Randomly from Array
» HEX to RGB array
» Filter Empty Array Elements

Comment: (none)

Language: PHP
Highlight Mode: PHP
Last Modified: March 16th, 2009

<?PHP
 
FUNCTION get_array_elems($arrResult, $where="array"){ 
           WHILE(LIST($key,$value)=EACH($arrResult)){ 
                 IF (IS_ARRAY($value)){ 
                    get_array_elems($value, $where."[$key]"); 
                 } 
                 ELSE { 
                       FOR ($i=0; $i<count($value);$i++){ 
                             ECHO $where."[$key]=".$value."<BR>\n"; 
                       } 
                 } 
           } 
  } 
 
  get_array_elems($arrResult); 
 
?> 
 


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org