Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Some elements in my array are empty based on what the user has entered. I need to remove these elements. This is my code to do so:

// Remove empty elements
foreach($linksArray as $link)
{
    if($links == '')
    {
        unset($link);
    }
}
print_r($linksArray);

But it doesn't work, $linksArray still has empty elements. I have also tried doing it with the empty() function but the outcome is the same.

Any help is appreciated, thanks.

share|improve this question

11 Answers

up vote 54 down vote accepted

You have a typo in your if condition: it should be $link, not $links. Furthermore, in order to modify the elements of an array in a foreach loop, you need to reference the variable, i.e. as &$link instead of as $link.

In fact, you don't need to write a loop for this. Simply use array_filter() instead, which conveniently handles all this for you:

print_r(array_filter($linksArray));
share|improve this answer
That was a typo haha, sorry. It's correct in my real code. Thanks for the answer :) – Will Sep 6 '10 at 21:15
I would use empty over == ''. But thanks for the reference :) – Brad F Jacobs Jun 1 '12 at 20:26
12  
That last line should really be big and bold – d-_-b Oct 13 '12 at 19:59
1  
I know this is over 2 years old but thanks! Never knew about array_filter(), it saves so much time. :D – jimjimmy1995 Feb 10 at 19:11
I read somewhere that behavior can be unexpected when looping through and array and unsetting elements at the same time. Is that not true? – Buttle Butkus May 5 at 3:25
show 3 more comments

You can use array_filter to remove empty elements:

$emptyRemoved = array_filter($linksArray);

If you have (int) 0 in your array, you may use the following:

$emptyRemoved = remove_empty($linksArray);

function remove_empty($array) {
  return array_filter($array, '_remove_empty_internal');
}

function _remove_empty_internal($value) {
  return !empty($value) || $value === 0;
}

EDIT: Maybe your elements are not empty per say but contain one or more spaces... You can use the following before using array_filter

$trimmedArray = array_map('trim', $linksArray);
share|improve this answer
1  
I just added it to the accepted answer by BoltClock, you could simply do array_filter($foo, 'strlen') to avoid the "0" issue and only remove those with zero length. – nezZario Apr 26 at 18:27
$linksArray = array_filter($linksArray);

"If no callback is supplied, all entries of input equal to FALSE will be removed." -- http://php.net/manual/en/function.array-filter.php

share|improve this answer
1  
I also tried this after Google'ing the problem. Unfortunately, it leaves in the blank elements for me. – Will Sep 6 '10 at 21:16
1  
this will also remove '0' – OIS Sep 6 '10 at 21:29
This is a great solution! Works like a charm. – Chuck Burgess Feb 1 '12 at 16:53
Good solution! Worked for me. – unr3al011 Mar 7 '12 at 20:31
@Will: are you sure? It removes also empty strings, I successfully tested this. Maybe your input values contain spaces and should be trimmed before. According to the boolean conversion rules the empty string is evaluated to false and therefore removed by array_filter. – acme Mar 12 '12 at 11:26
    $myarray = array_filter($myarray, 'strlen');  //removes null values but leaves "0"
    $myarray = array_filter($myarray);            //removes all null values
share|improve this answer

You can just do

array_filter($array)

array_filter: "If no callback is supplied, all entries of input equal to FALSE will be removed." This means that elements with values NULL, 0, '0', '', FALSE, array() will be removed too.

The other option is doing

array_diff($array, array(''))

which will remove elements with values NULL, '' and FALSE.

Hope this helps :)

share|improve this answer

Another one liner to remove empty ("" empty string) elements from your array:

$array = array_filter($array, create_function('$a','return $a!="";'));

Or maybe you want to trim your array elements first:

$array = array_filter($array, create_function('$a','return trim($a)!="";'));
share|improve this answer
Check out the manual page: no callback needed for this. – JohnK Apr 16 at 20:27

I use the following script to remove empty elements from an array

for ($i=0; $i<$count($Array); $i++)
  {
    if (empty($Array[$i])) unset($Array[$i]);
  }
share|improve this answer
function trim_array($Array)
{
        foreach ($Array as $value)
                if (trim($value) == "")
                {
                        $index = array_search($value, $Array);
                        unset($Array[$index]);
                }
        return $Array;
}
share|improve this answer
Thank you brother to edit it. – ali Farmani Oct 17 '12 at 16:08

I had to do this in order to keep an array value of (string) 0

      $url = array_filter($data, function ($value) {
            return (!empty($value) || $value === 0 || $value==='0');
          });
share|improve this answer
foreach($arr as $key => $val){
   if (empty($val)) unset($arr[$key];
}
share|improve this answer
foreach($linksArray as $key => $link) 
{ 
    if($link == '') 
    { 
        unset($linksArray[$key]); 
    } 
} 
print_r($linksArray); 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.