You can use the PHP in_array() function to test whether a value exists in an array or not.
Let's take a look at an example to understand how it basically works:
<?php
$zoo = array("Lion", "Elephant", "Tiger", "Zebra", "Rhino", "Bear");
if(in_array("Elephant", $zoo)){
echo "The elephant was found in the zoo.";
}
echo "<br>";
if(in_array("Tiger", $zoo)){
echo "The tiger was found in the zoo.";
}
?>
Use the PHP
in_array()functionYou can use the PHP
in_array()function to test whether a value exists in an array or not.Let's take a look at an example to understand how it basically works:
need an explanation for this answer? contact us directly to get an explanation for this answer