in_array()定义和用法
in_array() 函数查找数组中是否存在指定值。
语法
in_array(value,array,type)参数 描述
value 必需。规定要在数组搜索的值。
array 必需。规定要搜索的数组。
type 可选。如果设置该参数为 true,则检查搜索的数据与数组的值的类型是否相同。
说明
如果给定的值 value 存在于数组 array 中则返回 true。如果第三个参数设置为 true,函数只有在元素存在于数组中且数据类型与给定值相同时才返回 true。
如果没有在数组中找到参数,函数返回 fal。
注释:如果 value 参数是字符串,且 type 参数设置为 true,则搜索区分大小写。
例子 1
复制代码 代码如下:
<?php
$people = array(“peter”, “joe”, “glenn”, “cleveland”);
if (in_array(“glenn”,$people))
{
echo “match found”;
}
el
{
echo “match not found”;
}
?>
输出:
match found例子171中 2
复制代码 代码如下:
<?php
$people土地登记办法 = array(“peter”, “joe”, “glenn”, “cleveland”, 23);
if (in_array(“23”,$people, true))
{
echo “match found<br />”;
}
el
{
echo “match not found<br />”;
}if (in_array(“glenn”,$people, true))
{
echo “match found<br />”;
}
el
{
echo “match not found<br />”;
}if (in_array(23,$people, true))
{
echo “match found<高考是每年的几月几号;br />”;
}
el
{
echo “match过的结构 not found<br />”;
}
?>
输出:
mat冷门小说ch not found
match found
match found
本文发布于:2023-04-06 11:04:51,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/87c6f768bb182ab230bbca362218cf33.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:php数组函数序列之in.doc
本文 PDF 下载地址:php数组函数序列之in.pdf
留言与评论(共有 0 条评论) |