Skip to content

Instantly share code, notes, and snippets.

@reshadman
Last active August 29, 2015 14:08
Show Gist options
  • Save reshadman/430c9ab397d936951eb2 to your computer and use it in GitHub Desktop.
Save reshadman/430c9ab397d936951eb2 to your computer and use it in GitHub Desktop.
<?php
foreach($collection as $key => $item){
if(is_array($item)){
foreach($item as $tree => $treeItem){
if($tree != 'phones'){
unset($item[$tree])
}
}
}
if($key != 'leads'){
unset($callection[$key]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment