Answers for "php return all the key if key = true"

PHP
7

php key exists

// Here's our fruity array
$fruits = ['apple', 'pear', 'banana'];

// Use it in an `if` statement
if (array_key_exists("banana", $fruits)) {
 // Do stuff because `banana` exists
}

// Store it for later use
$exists = array_key_exists("peach", $fruits);
Posted by: Guest on May-14-2020
0

php array all keys empty

array('key1' => null, 'key2' => null, 'key3' => null, 'key4' => null)
if (!array_filter($array)) {
    // all values are empty (where "empty" means == false)
}
Posted by: Guest on May-06-2020

Browse Popular Code Answers by Language