php if array empty code example
Example 1: php array remove empty values
<?php
$arr = array('1', '', '2', '3', '0');
print_r(array_filter($arr));
print_r(array_filter($arr, 'strlen'));
print_r(array_filter($arr, function ($val) {if ($val > 0) {return true;} else {return false;}}));
Example 2: array empty check in php
if (empty($array)) {
}
Example 3: array should not be empty php
$arr = array();
if(!empty($arr)){
echo "not empty";
}
else
{
echo "empty";
}
Example 4: check if array is empty php
$non_empty_array = array('apples' => '2');
$empty_array = array();
if(!empty($non_empty_array)) {
echo "Given Array is not empty <br>";
}
if(empty($empty_array)) {
echo "Given Array is empty";
}
Example 5: php check empty variable
empty var php