Answers for "php if array key is not empty"

PHP
2

array should not be empty php

$arr = array();

if(!empty($arr)){
  echo "not empty";
}
else 
{
  echo "empty";
}
Posted by: Guest on August-10-2020
0

php array all keys empty

array('key1' => null, 'key2' => null, 'key3' => null, 'key4' => null)
if (!array_filter($array)) {
    // all values are empty (where "empty" means == false)
}
Posted by: Guest on May-06-2020

Code answers related to "php if array key is not empty"

Browse Popular Code Answers by Language