array value exists php code example
Example 1: 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);
Example 2: php array index 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);
// Return it directly
return array_key_exists("pineapple", $fruits);
Example 3: check if array has value php
$myArr = [38, 18, 10, 7, "15"];
echo in_array(10, $myArr); // TRUE
echo in_array(19, $myArr); // TRUE
// Without strict check
echo in_array("18", $myArr); // TRUE
// With strict check
echo in_array("18", $myArr, true); // FALSE
Example 4: check if array value exists in another array php
$result = !empty(array_intersect($people, $criminals));