Skip to content

Instantly share code, notes, and snippets.

@oskarcalvo
Last active August 2, 2017 08:00
Show Gist options
  • Save oskarcalvo/028cd0fba2a7951e7423e45f523d6374 to your computer and use it in GitHub Desktop.
Save oskarcalvo/028cd0fba2a7951e7423e45f523d6374 to your computer and use it in GitHub Desktop.
a function to clean arrays with empty values
<?php
/**
* Remove keys with empty values.
* @param array $array
*
* @return array
*/
function clean_empty_values(array $array) {
return array_filter($array, function ($item) {
return empty($item) ? FALSE : TRUE;
}, ARRAY_FILTER_USE_BOTH);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment