Php array function sequence in in_array ()-find whether the specified value exists in the array _ PHP Tutorial

Source: Internet
Author: User
In the php array function sequence, choose in_array () to check whether the specified value exists in the array. In_array () definition and usage the in_array () function is used to find whether a specified value exists in the array. The description value of the in_array (value, array, type) parameter is required. Specifies the value to be searched in the array. A In_array () definition and usage

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

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:

Example 2 of Match found

The code is as follows:


$ People = array ("Peter", "Joe", "Glenn", "Cleveland", 23 );

If (in_array ("23", $ people, TRUE ))
{
Echo "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

The http://www.bkjia.com/PHPjc/324423.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/324423.htmlTechArticlein_array () definition and usage in_array () function finds whether a specified value exists in the array. The description value of the in_array (value, array, type) parameter is required. Specifies the value to be searched in the array. A...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.