PHP Array function sequence In_array ()-Find out if there is a specified value in the array _php tips

Source: Internet
Author: User
In_array () Definition and usage

The In_array () function finds whether the specified value exists in the array.

Grammar
In_array (value,array,type) parameter description
Value required. Specify the values to search for in the array.
Array required. Specify the array to search for.
Type is optional. If this parameter is set to True, the search data is checked for the same type as the value of the array.

Description
Returns true if the value given is present in array arrays. If the third argument is set to True, the function returns true only if the element exists in the array and the data type is the same as the given value.

If the argument is not found in the array, the function returns FALSE.

Note: If the value parameter is a string and the type argument is set to True, the search is case-sensitive.

Example 1
Copy Code code as follows:

<?php
$people = Array ("Peter", "Joe", "Glenn", "Cleveland");

if (In_array ("Glenn", $people))
{
echo "Match found";
}
Else
{
echo "Match not Found";
}
?>

Output:

Match found Example 2
Copy Code code as follows:

<?php
$people = Array ("Peter", "Joe", "Glenn", "Cleveland", 23);

if (In_array ("$people, TRUE)"
{
echo "Match found<br/>";
}
Else
{
echo "Match not found<br/>";
}if (In_array ("Glenn", $people, TRUE))
{
echo "Match found<br/>";
}
Else
{
echo "Match not found<br/>";
}if (In_array, $people, TRUE)
{
echo "Match found<br/>";
}
Else
{
echo "Match not found<br/>";
}
?>

Output:
Match not found
Match found
Match found

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.