Laravel - Remove elements having NULL value from multidimentional array

拈花ヽ惹草 提交于 2019-12-04 08:58:39

If you want to remove the null values but not the empty arrays you could do something like:

function array_remove_null($item)
{
    if (!is_array($item)) {
        return $item;
    }

   return collect($item)
        ->reject(function ($item) {
            return is_null($item);
        })
        ->flatMap(function ($item, $key) {

            return is_numeric($key)
                ? [array_remove_null($item)]
                : [$key => array_remove_null($item)];
        })
        ->toArray();
}

$newArray = array_remove_null($array);

Hope this helps!

Ganesh K

In collection, use filter

some_collection->filter(function($value, $key) {
    return  $value != null;
});

Try this:

   function array_filter_recursive($input) 
   { 
      foreach ($input as &$value) 
      { 
           if (is_array($value)) 
           { 
               $value = array_filter_recursive($value); 
           } 
      }     
      return array_filter($input, function($var){return !is_null($var);} ); 
   } 

Give it a try:

$yourArr= array_map('array_filter', $yourArr);
$yourArr= array_filter( $yourArr);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!