Skip to content

Instantly share code, notes, and snippets.

@meniam
Last active December 20, 2015 02:28
Show Gist options
  • Save meniam/6056195 to your computer and use it in GitHub Desktop.
Save meniam/6056195 to your computer and use it in GitHub Desktop.
Remove empty values from php array
<?php
// Remove NULL values only
$new_array_without_nulls = array_filter($array_with_nulls, 'strlen');
// Remove any FALSE values
$new_array_without_nulls = array_filter($array_with_nulls);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment