Skip to content

Instantly share code, notes, and snippets.

@makingthingswork
Last active November 19, 2020 14:34
Show Gist options
  • Save makingthingswork/3753059a048dbd0d66e65c321c0042eb to your computer and use it in GitHub Desktop.
Save makingthingswork/3753059a048dbd0d66e65c321c0042eb to your computer and use it in GitHub Desktop.
Remove empty indexes from array
<?php
function remove_empty_index(array arr) {
return array_filter(arr, 'strlen');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment