I had an array with something like the following: Array ( [0] =>null, [1] => test, [2] => fun ). But I don’t want [0], the empty value in the array.
[0]
After searching the web for a good solution, I saw that people were using anywhere from 4 to 10+ lines of code to remove null values from arrays. This is obviously overkill so I decided to tackle the problem myself.
1
$new_array_without_nulls = array_filter($array_with_nulls, 'strlen');
This includes NULL values, EMPTY arrays, etc. Thanks to Paul Scott for pointing out this method.
$new_array_without_nulls = array_filter($array_with_nulls);