Title rewritten as: "The parameters of the foreach() function are invalid"
P粉419164700
P粉419164700 2023-08-21 12:03:34
0
2
491
<p>It's common for me to deal with data that can be either an array or an empty variable, and feed that data to some <code>foreach</code>. </p> <pre class="brush:php;toolbar:false;">$values ​​= get_values(); foreach ($values ​​as $value){ ... }</pre> <p>When you provide foreach with data that is not an array, you will receive a warning: </p> <blockquote> <p>Warning: Invalid argument supplied in foreach() in [...]</p> </blockquote> <p>Assuming that the <code>get_values()</code> function cannot be refactored to always return an array (backward compatibility, unavailable source code, or any other reason), I would like to know how to avoid these warnings What is the cleanest and most efficient way: </p> <ul> <li>Convert <code>$values</code> to an array</li> <li>Initialize <code>$values</code> to an array</li> <li>Wrap <code>foreach</code></li> in <code>if</code> <li>Other (please provide suggestions)</li> </ul><p><br /></p>
P粉419164700
P粉419164700

reply all(2)
P粉811349112

how about this? It's more concise and it's all in one line.

foreach ((array) $items as $item) {
 // ...
 }
P粉771233336

Personally, I think this is the cleanest - not sure if it's the most effective, mind you!

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

The reason for my preference is that it doesn't allocate an empty array when you don't have anything to begin with.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!