Skip to content

Instantly share code, notes, and snippets.

@caiowilson
Last active July 8, 2016 20:07
Show Gist options
  • Save caiowilson/4db7586d9423d6ed19f13cfd4a869d1e to your computer and use it in GitHub Desktop.
Save caiowilson/4db7586d9423d6ed19f13cfd4a869d1e to your computer and use it in GitHub Desktop.
<?php
function recursive($array){
foreach($array as $key => $value){
//If $value is an array.
if(is_array($value)){
//We need to loop through it.
recursive($value);
} else{
//It is not an array, so print it out.
echo $key . ": " . $value, '<br>';
}
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment