本文最后更新于 1765 天前,其中的信息可能已经有所发展或是发生改变。
PHP使用in_array函数检查数组中是否存在某个值
PHP使用 in_array() 函数检查数组中是否存在某个值,如果存在则返回 TRUE ,否则返回 FALSE。
bool in_array( mixed needle, array array [, bool strict] )
参数说明:
例1:
<?php
$os = array("Mac", "NT", "Irix", "Linux");
if (in_array("Irix", $os)) {
echo "Got Irix";
}
if (in_array("mac", $os)) {
echo "Got mac";
}
?>
以上代码的执行结果是:
Got Irix
第二个条件失败,因为 in_array() 是区分大小写的。
例2:
<?php
$europe = array("美国","英国","法国","德国","意大利","西班牙","丹麦");
if (in_array("美国",$europe)) {
echo "True";
}
?>
同上面一样,执行结果为True 。
例3:严格类型检查例子
<?php
$a = array('1.10', 12.4, 1.13);
if (in_array('12.4', $a, true)) {
echo "'12.4' found with strict check ";
}
if (in_array(1.13, $a, true)) {
echo "1.13 found with strict check ";
}
?>
其输出结果是:
1.13 found with strict check
例4:数组中套用数组
<?php
$a = array(array('p', 'h'), array('p', 'r'), 'o');
if (in_array(array('p', 'h'), $a)) {
echo "'ph' was found ";
}
if (in_array(array('f', 'i'), $a)) {
echo "'fi' was found ";
}
if (in_array('o', $a)) {
echo "'o' was found ";
}
?>
其输出结果为:'ph' was found
'o' was found
其具体用法如下:bool in_array(mixed $needle,array $haystack [, bool $strict = FALSE ])