Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save alekpopovic/b8836481536c8fd0653a to your computer and use it in GitHub Desktop.
Save alekpopovic/b8836481536c8fd0653a to your computer and use it in GitHub Desktop.
Recursive Array Iterator
<?php
######################################
#
# Author: Aleksandar Popovic
#
# A recursive function to traverse a multi-dimensional array
# where the dimensions are not known
#
#######################################
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);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment