why is array empty php code example
Example 1: array empty check in php
if (empty($array)) {
// list is empty.
}
Example 2: array should not be empty php
$arr = array();
if(!empty($arr)){
echo "not empty";
}
else
{
echo "empty";
}
if (empty($array)) {
// list is empty.
}
$arr = array();
if(!empty($arr)){
echo "not empty";
}
else
{
echo "empty";
}