Home > Article > Backend Development > search.taobao.com PHP array function sequence array_search- returns the key name by element value
array_search() definition and usage
array_search() function is the same as in_array(), searching for a key value in the array. If the value is found, the key of the matching element is returned. If not found, returns false.
Prior to PHP 4.2.0, functions returned null instead of false on failure.
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.
Syntax
array_search(value,array,strict) Parameter Description
value Required. Specifies the value to search for in the array.
array required. The array to be searched.
strict optional. Possible values:
true
false - Default
If the value is set to true, the type of the given value will also be checked in the array. (See Example 2)
Example 1
Copy the code The code is as follows:
$a=array("a"=>"Dog","b"=>"Cat ","c"=>"Horse");
echo array_search("Dog",$a);
?>
The above introduces the search.taobao.com PHP array function sequence array_search - returns the key name according to the element value, including the content of search.taobao.com. I hope it will be helpful to friends who are interested in PHP tutorials.