Home > Backend Development > PHP Problem > How to determine whether a variable is in an array in php

How to determine whether a variable is in an array in php

PHPz
Release: 2023-04-26 15:39:07
Original
556 people have browsed it

PHP是一门十分流行的Web编程语言,它广泛应用于网页开发、服务器端编程和数据库开发等方面。在PHP编程中经常需要判断一个变量是否在一个数组里,本文将介绍如何使用PHP判断变量是否在数组内。

一、in_array()函数

PHP提供了一个in_array()函数,它可以判断指定的值是否在数组中存在。

$fruit = array('apple','orange','banana');

if (in_array('apple', $fruit)) {

echo "The apple is in the array!";
Copy after login

} else {

echo "The apple is not in the array!";
Copy after login

}

上述代码中,$fruit是一个包含3个元素的数组,in_array()函数的第一个参数是待检查的值apple,第二个参数是待检查的数组$fruit,当in_array()函数返回TRUE时,表示待检查的值在数组中存在,否则表示待检查的值不存在。

二、isset()函数结合array_key_exists()函数

可以通过isset()函数结合array_key_exists()函数判断一个数组的键是否存在,并判断该键存储的值是否符合要求。

比如有如下代码:

$array = array('name' => 'Tom', 'age' => 18);

if (isset($array['name'])) {

echo "\$array['name'] 有定义。<br/>\n";
Copy after login

} else {

echo "\$array['name'] 未定义。<br/>\n";
Copy after login

}

if (array_key_exists('name', $array)) {

echo "数组 \$array 中有键 'name' !<br/>\n";
Copy after login

} else {

echo "数组 \$array 中没有键 'name' !<br/>\n";
Copy after login

}

上面代码中先判断'name'键是否存在,如果存在则打印出有定义的字符串。接着使用array_key_exists()函数判断键'name'是否存在于数组中并打印相应的提示信息。

三、in_array()函数的第三个可选参数

in_array()函数还有一个可选参数strict,用于判断是否在判断时考虑变量的数据类型。

在默认情况下strict为FALSE,其判断方法是使用"=="进行判断,表示只要值相等就判断为已存在。如果将strict设为TRUE,则使用"==="进行判断,即在类型和值均相等时才判断为已存在。

$my_array = array("red","blue","green");

$check1 = "red";
$check2 = "purple";

if(in_array($check1,$my_array)){

echo "$check1 found!";
Copy after login

}
else{

echo "$check1 not found!";
Copy after login

}

if(in_array($check2,$my_array)){

echo "$check 2 found!";
Copy after login

}
else{

echo "$check 2 not found!";
Copy after login

}

上述代码中,$my_array是一个包含3个元素的数组,分别是red、blue、green。$check1的值为red,$check2的值为purple。第一个if语句中,$check1的值存在于数组中,所以会输出“red found!”。第二个if语句中,$check2的值不存在于数组中,所以会输出“purple not found!”。

我们来看一下在严格模式下的使用:

$my_array = array("red","blue","green");
$check3 = "3";
if(in_array($check3,$my_array,TRUE)){

echo "$check 3 found!";
Copy after login

}
else{

echo "$check 3 not found!";
Copy after login

}

上述代码中,$my_array是一个包含3个元素的数组,分别是red、blue、green。$check3的值为3,由于in_array()函数使用了严格模式,所以会输出“3 not found!”,因为虽然3确实存在于数组中,但是数据类型不一致。

四、总结

本文介绍了PHP中判断变量是否在数组内的三种方法,分别是使用in_array()函数、结合isset()函数和array_key_exists()函数,以及in_array()函数的第三个可选参数。在实际编程中可以根据实际需要选择不同的判断方法。

The above is the detailed content of How to determine whether a variable is in an array in php. For more information, please follow other related articles on the PHP Chinese website!

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