Remove NULL values from PHP arrays with 1 line
Remove NULL values only
$new_array_without_nulls = array_filter($array_with_nulls, ‘strlen’);
Remove any FALSE values
This includes NULL values, EMPTY arrays, etc.
$new_array_without_nulls = array_filter($array_with_nulls);
Posted on September 1, 2010, in Array, PHP, Remove null. Bookmark the permalink. Leave a Comment.
Leave a Comment
Comments (0)