Answers for "test of a arrayvalue is set php and 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

Code answers related to "test of a arrayvalue is set php and not empty"

Browse Popular Code Answers by Language