“Array Check em php vazio” Respostas de código

Array Check em php vazio

if (empty($array)) {
     // list is empty.
}
Hjmcoder

Verifique se a matriz está vazia 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"; 
}
Ivan The Terrible

Respostas semelhantes a “Array Check em php vazio”

Perguntas semelhantes a “Array Check em php vazio”

Mais respostas relacionadas para “Array Check em php vazio” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código