Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

check if array is empty php

// Declare an array and initialize it 
$non_empty_array = array('apples' => '2'); 
  
// Declare an empty array 
$empty_array = array(); 
  
// Condition to check array is empty or not 
if(!empty($non_empty_array)) {
    echo "Given Array is not empty <br>"; 
}
if(empty($empty_array)) {
    echo "Given Array is empty"; 
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #check #array #empty #php
ADD COMMENT
Topic
Name
3+2 =