Skip to content

Instantly share code, notes, and snippets.

@letitride
Created November 10, 2015 23:24
Show Gist options
  • Save letitride/3afee9f32b67840e5289 to your computer and use it in GitHub Desktop.
Save letitride/3afee9f32b67840e5289 to your computer and use it in GitHub Desktop.
function array_filter_recursive($input)
{
foreach ($input as &$value) {
if (is_array($value)) {
$value = array_filter_recursive($value);
}
}
return array_filter($input);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment