Answers for "check if array exists php"

PHP
4

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);
Posted by: Guest on March-05-2020
22

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
Posted by: Guest on January-21-2020
0

what is use of in_array() function in php

The in_array() function is an inbuilt function in PHP. 
The in_array() function is used to check whether a given value exists in an array or not.
It returns TRUE if the given value is found in the given array, and FALSE otherwise.

  <?php
  
$people = array("Peter", "Joe", "Glenn", "Cleveland");

if (in_array("Glenn", $people))
  {
  echo "Match found";
  }
else
  {
  echo "Match not found";
  }

?>
Posted by: Guest on January-03-2021

Code answers related to "check if array exists php"

Browse Popular Code Answers by Language