Home  >  Article  >  Backend Development  >  PHP array search function in_array(), array_search(), array_key_exists() usage examples_PHP tutorial

PHP array search function in_array(), array_search(), array_key_exists() usage examples_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:31:371035browse

There are many ways to find whether a specified value exists in an array in PHP. I remember that a long time ago I foolishly used a foreach loop to find it. Now I will mainly share how to use PHP’s three built-in array functions to find a specified value. Whether the value exists in the array, the three arrays are in_array(), array_search(), array_key_exists().

First of all, let’s introduce their respective definitions and functions

in_array(value,array,type)

The function of this function is to search for the specified value in the array. type is an optional parameter. If this parameter is set to true, it will check whether the type of the searched data and the value of the array are the same, that is, they are equal to each other.

Example:

Copy code The code is as follows:

$people = array(" Peter", "Joe", "Glenn", "Cleveland");
if(in_array("Glenn",$people)){
echo "Match found";
}else{
echo "Match not found";
}
?>

Output:

Match found

array_key_exists(key,array)

This function is to determine whether the specified key exists in an array. If the key exists, it returns true, otherwise it returns false.

Example:

Copy code The code is as follows:

$a=array(" a"=>"Dog","b"=>"Cat");
if(array_key_exists("a",$a)){
echo "Key exists!";
} else{
echo "Key does not exist!";
}
?>

Output:

Key exists!

array_search(value,array,strict)

The array_search() function is the same as in_array(), searching for a key value in the array. If the value is found, the key name matching the element is returned. If not found, returns false. Note that prior to PHP 4.2.0, functions returned null instead of false on failure. Similarly, if the third parameter strict is specified as true, the key name of the corresponding element will only be returned if the data type and value are consistent.

Example:

Copy code The code is as follows:

$a=array("a"=> "Dog","b"=>"Cat","c"=>5,"d"=>"5");
echo array_search("Dog",$a);
echo array_search("5",$a);
?>

Output:

ad

After actual performance comparison, when the amount of data is not large, such as less than 1000, any search method can be used, and it will not become a performance bottleneck. But when the amount of data is relatively large, it is more appropriate to use array_key_exists. According to tests, array_key_exist is more than ten or even dozens of times more efficient than in_array.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/762611.htmlTechArticleThere are many ways to find whether a specified value exists in an array in php. I remember that I was always stupid a long time ago. Use foreach loop to search. Below I will mainly share the three built-in php...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn