php数组函数序列之in_array() 查找数组值是否存在
程序员文章站
2022-12-25 23:43:55
in_array() 定义和用法 in_array() 函数在数组中搜索给定的值。 语法 in_array(value,array,type) 参数 描述 value 必需...
in_array() 定义和用法
in_array() 函数在数组中搜索给定的值。
语法
in_array(value,array,type)
参数 描述
value 必需。规定要在数组搜索的值。
array 必需。规定要搜索的数组。
type 可选。如果设置该参数为 true,则检查搜索的数据与数组的值的类型是否相同。
说明
如果给定的值 value 存在于数组 array 中则返回 true。如果第三个参数设置为 true,函数只有在元素存在于数组中且数据类型与给定值相同时才返回 true。
如果没有在数组中找到参数,函数返回 false。
注释:如果 value 参数是字符串,且 type 参数设置为 true,则搜索区分大小写。
例子 1
<?php
$people = array("peter", "joe", "glenn", "cleveland");
if (in_array("glenn",$people))
{
echo "match found";
}
else
{
echo "match not found";
}
?>
输出:
match found
例子 2
<?php
$people = array("peter", "joe", "glenn", "cleveland", 23);
if (in_array("23",$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(23,$people, true))
{
echo "match found<br />";
}
else
{
echo "match not found<br />";
}
?>
输出:
match not found
match found
match found
in_array() 函数在数组中搜索给定的值。
语法
in_array(value,array,type)
参数 描述
value 必需。规定要在数组搜索的值。
array 必需。规定要搜索的数组。
type 可选。如果设置该参数为 true,则检查搜索的数据与数组的值的类型是否相同。
说明
如果给定的值 value 存在于数组 array 中则返回 true。如果第三个参数设置为 true,函数只有在元素存在于数组中且数据类型与给定值相同时才返回 true。
如果没有在数组中找到参数,函数返回 false。
注释:如果 value 参数是字符串,且 type 参数设置为 true,则搜索区分大小写。
例子 1
复制代码 代码如下:
<?php
$people = array("peter", "joe", "glenn", "cleveland");
if (in_array("glenn",$people))
{
echo "match found";
}
else
{
echo "match not found";
}
?>
输出:
match found
例子 2
复制代码 代码如下:
<?php
$people = array("peter", "joe", "glenn", "cleveland", 23);
if (in_array("23",$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(23,$people, true))
{
echo "match found<br />";
}
else
{
echo "match not found<br />";
}
?>
输出:
match not found
match found
match found
推荐阅读
-
php数组函数序列之array_slice() - 在数组中根据条件取出一段值,并返回
-
php数组函数序列之array_flip() 将数组键名与值对调
-
php数组函数序列之array_search()- 按元素值返回键名
-
php数组函数序列之sort() 对数组的元素值进行升序排序
-
php数组函数序列之end() - 移动数组内部指针到最后一个元素,并返回该元素的值
-
php数组函数序列之prev() - 移动数组内部指针到上一个元素的位置,并返回该元素值
-
php数组函数序列之asort() - 对数组的元素值进行升序排序,保持索引关系
-
php数组函数序列之rsort() - 对数组的元素值进行降序排序
-
php数组函数序列之next() - 移动数组内部指针到下一个元素的位置,并返回该元素值
-
php数组函数序列之array_key_exists() - 查找数组键名是否存在