php is empty array 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: php empty array
$foo = array();
unset($foo);