📜  php代码示例中的数组空检查

📅  最后修改于: 2022-03-11 14:53:45.105000             🧑  作者: Mango

代码示例2
// 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 
"; } if(empty($empty_array)) { echo "Given Array is empty"; }