in_array
(PHP 4, PHP 5)
in_array — 檢查數組中是否存在某個值
說明
bool in_array ( mixed $needle , array $haystack [, bool $strict ] )
在 haystack 中搜尋 needle ,如果找到則返回 TRUE,否則返回 FALSE。
如果第三個參數 strict 的值為 TRUE 則 in_array() 函數還會檢查 needle 的類型是否和 haystack 中的相同。
Note: 如果 needle 是字串,則比較是區分大小寫。
Note: 在 PHP 版本 4.2.0 之前,needle 不允許是一個數組。
Example #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() 是區分大小寫,所以以上程式顯示為:
Got Irix
Example #2 in_array() 嚴格類型檢查例子
<?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
Example #3 in_array() 中用數組作為 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
需要注意的地方:
假如:
先聲明一個數組為:
$arr = array(*);
那麼則有:
in_array(0, $arr) == true
令人費解! {弱語言}
解決辦法:
in_array(strval(0), $arr, true))