Answers for "get elements not empty in array php"

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 "get elements not empty in array php"

Browse Popular Code Answers by Language