Sarathlal N

Fix for PHP Warning – Invalid argument supplied for foreach() in …

While working on a WordPress project, I got a PHP warning.

Warning: Invalid argument supplied for foreach() in …

We can easily hide warnings in PHP. But I like to learn more about such simple matters in deep.

Actually this error is coming from a foreach loop. I just try to var_dump values in an array using this foreach loop.

foreach ($items as $item) {
 // ...
}

In the PHP manual, it says that

The foreach construct provides an easy way to iterate over arrays. foreach works only on arrays and objects, and will issue an error when you try to use it on a variable with a different data type or an uninitialized variable.

This is the basic cause behind this warning. We are passing something to foreach loop that is not an array.

To solve this warning, we have two simple options at here.

Solution 1

We can check the type of that variable & if it is an array, then only pass it to the foreach loop.

if (is_array($items)) {
 foreach ($items as $item) {
 // ...
 }
}

Now we ensure that we have an array for foreach loop.

Solution 2

We can also solve this warning by cast that variable to an array in the loop. This is a lot cleaner, requires less typing and only needs one edit on a single line.

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

If we cast any value to an array, we will get an array whatever value it was.

Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.

Recent Posts

  1. Disabling Payment Methods in WooCommerce Based on Conditions
  2. How to Update Product Quantity in WooCommerce Using Custom Code
  3. Dynamically Generating a Table of Contents in WordPress
  4. Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
  5. Understanding the Impact of git reset --hard Command

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.