Using Laravel, I created an app to summarize and chat with YouTube videos. Check it out!
Benjamin Crozat
PHP

The fastest way to check if your PHP array is empty

Benjamin Crozat
Modified on Nov 2, 2023 0 comments Edit on GitHub
The fastest way to check if your PHP array is empty

The fastest way to check if an array is empty

To check whether a PHP array is empty or not, use the empty() function:

$foo = [];

// true
var_dump(empty($foo));

$bar = ['Foo', 'Bar', 'Baz'];

// false
var_dump(empty($bar));

This is my favorite way of doing it. But there are other methods to check if an array is empty such as:

  1. Using the count() (or sizeof()) function to count the number of elements in the array and check if it’s equal to zero. count() can even count the numbers of entries inside a multidimensional array.
  2. Using the not operator (!). If the array does hold any value, the not operator will return true.

You can stop there, or you can dive deeper and see in detail to use these functions to check for empty arrays.

Other ways to check if an array is empty

The count() function

Another way to check if your array is empty is to use the count() function. The function returns an integer depending on the number of items inside, or zero if it’s empty.

You can even use it with Countable objects.

echo count(['Foo', 'Bar', 'Baz']);

For multidimensional arrays, there’s a second parameter for which you can use the COUNT_RECURSIVE constant to recursively count the numbers of items.

$array = [
    'Foo' => [
        'Bar' => ['Baz'],
    ],
];

// 3
$count = count($array, COUNT_RECURSIVE);

// If $count is greater than zero.
if ($count > 0) {
    // The array is not empty.
} else {
    // The array is empty.
}

Learn more about the count() function.

The sizeof() function

sizeof() is an alias of count() and can be used on arrays in the same way. PHP actually has a lot of aliases for various functions.

There’s nothing to add, you already know how to use it:

echo sizeof(['Foo', 'Bar', 'Baz']);

Learn more about the sizeof() function.

The not (!) operator

One not super intuitive way to check if your array is not empty is to use the not operator (!).

I had no clue it could check for empty arrays. But here I am, after more than 15 years of PHP, learning yet another basic thing. 😅

$foo = [];

if (! $foo) {
    echo '$foo is empty.';
}

Wait, there's more!

Be the first to comment!

Get help or share something of value with other readers!

Great deals for enterprise developers
  • ZoneWatcher
    Get instant alerts on DNS changes across all major providers, before your customers notice.
    25% off for 12 months using the promo code CROZAT.
    Try ZoneWatcher for free
  • Quickly build highly customizable admin panels for Laravel projects.
    20% off on the pro version using the promo code CROZAT.
    Try Backpack for free
  • Summarize and talk to YouTube videos. Bypass ads, sponsors, chit-chat, and get to the point.
    Try Nobinge →
  • Monitor the health of your apps: downtimes, certificates, broken links, and more.
    20% off the first 3 months using the promo code CROZAT.
    Try Oh Dear for free
  • Keep the customers coming; monitor your Google rankings.
    30% off your first month using the promo code WELCOME30
    Try Wincher for free →
The latest community links
- / -