How to determine an empty array in php (two methods)
In the PHP development process, it is often necessary to determine whether an array is empty. There are two situations in determining whether an array is empty. One is that the array has no elements, and the other is that the variable does not exist or the value is null.
The following are two ways to determine the empty array:
Method 1: Use the empty() function
PHP provides an empty() method, which can be easily and quickly determined Whether the array is empty.
It should be noted here that the empty() function has a special judgment on arrays. array(), array(0) and false will all be judged as empty.
The sample code is as follows:
$arr = array(); if(empty($arr)){ echo "数组为空"; }
The above code creates an empty array, uses the empty() function to determine whether the array is empty, and finally outputs "array is empty".
Method 2: Use the count() function
In addition, we can also use the count() function to determine whether an array is empty. If the number of elements in an array is 0, then we consider it an empty array.
The sample code is as follows:
$arr = array(); if(count($arr) === 0){ echo "数组为空"; }
The above code creates an empty array, uses the count() function to determine whether the array is empty, and finally outputs "array is empty".
At the same time, the count() function can also determine whether a variable is null. If it is null, it returns 0. You can determine whether the variable is null by determining whether the return value of count() is equal to 0.
$var = null; if(count($var) === 0){ echo "变量为null"; }
The above code creates a null variable, uses the count() function to determine whether the variable is null, and finally outputs "the variable is null".
To sum up, the above two methods can be used to determine whether an array is empty, and you can choose to use it according to the actual situation.
The above is the detailed content of How to determine an empty array in php (two methods). For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics









