In_array () definition and usage the in_array () function is used to find whether the specified value in_array () exists in the array.
The in_array () function finds whether a specified value exists in the array.
Syntax
In_array (value, array, type) parameter description
Value is required. Specifies the value to be searched in the array.
Array is required. Specifies the array to be searched.
Type is optional. If this parameter is set to true, check whether the data to be searched is of the same type as the value of the array.
Description
Returns true if the given value exists in the array. If the third parameter is set to true, the function returns true only when the element exists in the array and the data type is the same as the given value.
If no parameter is found in the array, the function returns false.
Note: If the value parameter is a string and the type parameter is set to true, the search area is case sensitive.
Example 1
Output:
Example 2 of Match found
"; } else { echo "Match not found
"; }if (in_array("Glenn",$people, TRUE)) { echo "Match found
"; } else { echo "Match not found
"; }if (in_array(23,$people, TRUE)) { echo "Match found
"; } else { echo "Match not found
"; } ?>
Output:
Match not found
Match found
Match found
For more information about the php array function sequence, see in_array ()-Search for the specified value in the array!