$arr = array(
'test' => array(
'soap' => true,
),
);
$input = 'hey';
if (in_array($input, $arr['test'])) {
echo $input . ' is apparently in the array?';
}
结果: 嘿显然是在阵列中?
对我没有任何意义,请解释原因。我该如何解决这个问题?
答案 0 :(得分:11)
那是因为type juggling导致的true == 'hey'
。你在寻找的是:
if (in_array($input, $arr['test'], true)) {
它强制基于===
而不是==
进行相等测试。
in_array('hey', array('soap' => true)); // true
in_array('hey', array('soap' => true), true); // false
为了更好地理解类型杂耍你可以玩这个:
var_dump(true == 'hey'); // true (because 'hey' evaluates to true)
var_dump(true === 'hey'); // false (because strings and booleans are different type)
<强>更新强>
如果您想知道是否设置了数组键(而不是存在值),您应该使用isset()
,如下所示:
if (isset($arr['test'][$input])) {
// array key $input is present in $arr['test']
// i.e. $arr['test']['hey'] is present
}
更新2
还有array_key_exists()
可以测试阵列密钥的存在;但是,只有在相应的数组值可能为null
的情况下才能使用它。
if (array_key_exists($input, $arr['test'])) {
}
答案 1 :(得分:2)
您正在使用数组作为字典,但是当您像数组一样使用它时,将使用in_array
函数。检查the documentation。