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

It often happens to me to handle data that can be either an array or a null variable and to feed some foreach with these data.

$values = get_values();

foreach ($values as $value){
  ...
}

When you feed a foreach with data that are not an array, you get a warning:

Warning: Invalid argument supplied for foreach() in [...]

Assuming it's not possible to refactor the get_values() function to always return an array (backward compatibility, not available source code, whatever other reason), I'm wondering which is the cleanest and most efficient way to avoid these warnings:

  • Casting $values to array
  • Initializing $values to array
  • Wrapping the foreach with an if
  • Other (please suggest)
share|improve this question
depends on the situation. – Your Common Sense Apr 13 '10 at 13:55
Could you elaborate on that? – Roberto Aloi Apr 13 '10 at 14:02

4 Answers

up vote 59 down vote accepted

Personally I find this to be the most cleanest - not sure if it's the most efficient, mind!

if (is_array($values))
{
    foreach ($values as $value)
    {
        ...
    }
}

The reasons for my preference is so you're not allocating an empty array when you've got nothing to begin with anyway.

share|improve this answer
Or use count() to figure out if array isn't empty – Kemo Apr 13 '10 at 13:59
9  
@Kemo: count() is not reliable. If you pass count() null, it returns 0. If you pass it a non-null, non-array argument, it returns 1. Therefore it's impossible to use count() to determine if the variable is an array when the variable could be an empty array, or an array containing 1 item. – Andy Shellam Apr 13 '10 at 14:03

i would do the same thing as Andy but i'ld use the 'empty' function.

like so:

if(empty($yourArray))
{echo"<p>There's nothing in the array.....</p>";}
else
{
foreach ($yourArray as $current_array_item)
  {
    //do something with the current array item here
  } 
}
share|improve this answer

I usually use a construct similar to this:

/**
 * Determine if a variable is iterable. i.e. can be used to loop over.
 *
 * @return bool
 */
function is_iterable($var)
{
    return $var !== null 
        && (is_array($var) 
            || $var implements Iterator 
            || $var implements IteratorAggregate
            );
}

$values = get_values();

if (is_iterable($values))
{
    foreach ($values as $value)
    {
        // do stuff...
    }
}

Note that this particular version is not tested, its typed directly into SO from memory.

share|improve this answer

First of all, every variable must be initialized. Always.
Casting is not an option.
if get_values(); can return different type variable, this value must be checked, of course.

share|improve this answer
Casting is an option - if you initialise an array using $array = (array)null; you get an empty array. Of course it's a waste of memory allocation ;-) – Andy Shellam Apr 13 '10 at 14:13
+1: read from a sentimental point of view, I don't care if the language can do without, variables MUST be declared and unreliable results MUST be checked. It's required to keep the developer(s) sane and the error logs short. – Kris Mar 27 at 9:23

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.