在PHP中可以使用in_array()函數來判斷一個值是否在數組中。示例如下:
$fruits = array("apple", "banana", "orange", "kiwi");
if (in_array("apple", $fruits)) {
echo "apple is in the array";
} else {
echo "apple is not in the array";
}
上面的代碼會輸出"apple is in the array",因為"apple"這個值在數組$fruits中。如果想判斷一個值是否不在數組中,可以使用邏輯非運算符"!",示例如下:
if (!in_array("mango", $fruits)) {
echo "mango is not in the array";
} else {
echo "mango is in the array";
}
上面的代碼會輸出"mango is not in the array",因為"mango"這個值不在數組$fruits中。