Answers for "php empty"

PHP
17

array empty check in php

if (empty($array)) {
     // list is empty.
}
Posted by: Guest on April-15-2020
5

php code to check if variable is null

if(empty($var1)){
    echo 'This line is printed, because the $var1 is empty.';
}
Posted by: Guest on May-01-2020
4

php empty object

$x = new stdClass();
Posted by: Guest on February-19-2020
5

php empty

/*
 * Determine whether something is considered empty/falsy
 */
empty('');      // true
empty('0');     // true
empty(0);       // true
empty(null);    // true
empty([]);      // true
empty(false);   // true
empty('false'); // false
empty('true');  // false
Posted by: Guest on June-09-2021
3

php check for empty string

if (empty($var)) {
    echo '$var is either 0, empty, or not set at all';
}
Posted by: Guest on March-07-2020
1

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"; 
}
Posted by: Guest on November-15-2020

Browse Popular Code Answers by Language