您能否在下面的代码中帮助我。 在下面的代码中,in_array不起作用。
$d = "23232,54454,656565";
$data = explode(",", $d);
$pass = (isset($test['pass'][1]) ? $test['pass'][1] : '');
if(in_array($pass, $data)) {
echo "exist";
} else {
echo "Not Exist";
}
由于
答案 0 :(得分:0)
我测试了你的代码,并将以下行放在首位,它起作用了:
$test['pass'][1] = '23232';
$ test ['传递'] [1]为空,您看到"不存在"消息