(PHP 4, PHP 5, PHP 7, PHP 8)
in_array — 檢查數(shù)組中是否存在某個值
大海撈針,在大海(haystack
)中搜索針(
needle
),如果沒有設(shè)置 strict
則使用寬松的比較。
needle
待搜索的值。
注意:
如果
needle
是字符串,則比較是區(qū)分大小寫的。
haystack
待搜索的數(shù)組。
strict
如果第三個參數(shù) strict
的值為
true
則 in_array() 函數(shù)還會檢查
needle
的類型是否和
haystack
中的相同。
如果找到 needle
則返回 true
,否則返回 false
。
示例 #1 in_array() 例子
<?php
$os = array("Mac", "NT", "Irix", "Linux");
if (in_array("Irix", $os)) {
echo "Got Irix";
}
if (in_array("mac", $os)) {
echo "Got mac";
}
?>
第二個條件失敗,因為 in_array() 是區(qū)分大小寫的,所以以上程序顯示為:
Got Irix
示例 #2 in_array() 嚴(yán)格類型檢查例子
<?php
$a = array('1.10', 12.4, 1.13);
if (in_array('12.4', $a, true)) {
echo "'12.4' found with strict check\n";
}
if (in_array(1.13, $a, true)) {
echo "1.13 found with strict check\n";
}
?>
以上例程會輸出:
1.13 found with strict check
示例 #3 in_array() 中用數(shù)組作為 needle
<?php
$a = array(array('p', 'h'), array('p', 'r'), 'o');
if (in_array(array('p', 'h'), $a)) {
echo "'ph' was found\n";
}
if (in_array(array('f', 'i'), $a)) {
echo "'fi' was found\n";
}
if (in_array('o', $a)) {
echo "'o' was found\n";
}
?>
以上例程會輸出:
'ph' was found 'o' was found