PHP Array Filter только NULL

array_filter($array, function ($v) { return !is_null($v); });
DesolatorMagno