Home  >  Article  >  Backend Development  >  How to check if value is in array in php

How to check if value is in array in php

PHPz
PHPzOriginal
2023-04-20 13:48:13986browse

As PHP becomes more and more widely used, we need to frequently use arrays when writing PHP applications. When doing data processing, we often need to check whether a certain value is in an array. This article will explain how to quickly check whether a value is in an array in PHP.

To check if a value is in an array, we can use the in_array function in PHP. The in_array function can accept two parameters: the value to be found and the array to be found. If the value exists in the array, the function will return true; otherwise, it will return false.

The following is a sample code using the in_array function:

//定义数组
$arr = array('apple', 'banana', 'orange');

//检查某个值是否在数组中
if (in_array('apple', $arr)) {
    echo "apple存在数组中";
} else {
    echo "apple不存在数组中";
}

In the above sample code, we first define an array named $arr, which contains three elements, namely 'apple ', 'banana' and 'orange'. Next, we call the in_array function to check if 'apple' is in the array $arr. Since 'apple' does exist in the array, the function will return true, and we will see the message "apple exists in the array" printed.

In addition to checking whether a value is in an array, the in_array function can also be used to check whether a value is in multiple arrays. Just pass the arrays to be found to the function in order according to their order in the parameter list. The following is an example code that uses the in_array function to check whether a value is in multiple arrays:

//定义数组
$arr1 = array('apple', 'banana', 'orange');
$arr2 = array('lemon', 'grape', 'watermelon');

//检查某个值是否在多个数组中
if (in_array('apple', $arr1) || in_array('apple', $arr2)) {
    echo "apple存在数组中";
} else {
    echo "apple不存在数组中";
}

In this example, we define two arrays: $arr1 and $arr2. Next, we call the in_array function to check if 'apple' is in these two arrays. If 'apple' exists in any array, this function will return true, and we will see the message "apple exists in array" output.

Of course, we can also use some other functions in PHP to achieve the above functions. For example, we can use the array_search function to find the key of an element in an array. We can also use the strict mode of in_array (that is, the third parameter is true) to check whether a value exists in an array and has the same data type.

Whether you are using the in_array function or some other function, it is very important to understand how to find a value in an array. When writing PHP programs, be sure to master these skills so that you can complete data processing tasks more efficiently.

The above is the detailed content of How to check if value is in array in php. For more information, please follow other related articles on the PHP Chinese website!

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