PHP searches for a given simple instance in an array array_search function, array array_search_PHP tutorial

WBOY
Release: 2016-07-12 08:49:45
Original
877 people have browsed it

PHP searches an array for a given simple instance array_search function, array array_search

array_search()

PHP array_search() function is used to search for a given value in an array, and returns the corresponding key name if successful, otherwise it returns FALSE.

Syntax:

mixed array_search( mixed needle, array array [, bool strict] ) parameter description:

参数 说明
needle 需要在数组中搜索的值,如果是字符串,则区分大小写
array 需要检索的数组
strict 可选,如果设置为 TRUE ,则还会对 needle 与 array 中的值类型进行检查

Since the starting index number of the index array may be 0, the function may also return a non-Boolean value equivalent to FALSE, such as 0 or "", so you need to use the === operator to perform Strict verification.

Example:

<&#63;php
$arr_a = array(0 => "a", 1 => "b", 2 => "c");
$key = array_search("a", $arr_a);
if( $key !== FALSE ){
  echo "键名为:$key";
} else {
  echo '无匹配结果';
}
&#63;>
Copy after login

The example output results are as follows:

Key name: 0 If needle appears more than once in array, return the first matching key. To return the keys of all matching values, use the array_keys() function.

The above PHP search for a given simple instance in an array array_search function is all the content shared by the editor. I hope it can give you a reference, and I hope you will support Bangkejia more.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1136642.htmlTechArticlePHP searches for a given simple instance in the array array_search function, array array_search array_search() PHP array_search() function is used Used to search for a given value in an array and return if successful...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!