Answers for "php make arry 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
1

declare empty array in php

$emptyArray = []; 
$emptyArray = array();
$emptyArray = (array) null;
Posted by: Guest on May-25-2020

Browse Popular Code Answers by Language