Last active
August 29, 2015 14:08
-
-
Save reshadman/430c9ab397d936951eb2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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