Guest User

Untitled

a guest
Jul 16th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2. function recursive_remove($array)
  3. {
  4. return array_filter($array, function($value) {
  5. if ( is_array($value) )
  6. return recursive_remove($value);
  7. elseif ( $value === '' )
  8. return false;
  9. else
  10. return true;
  11. });
  12. }
Add Comment
Please, Sign In to add comment