溫馨提示×

如何用php contains函數檢查數組元素

PHP
小樊
96
2024-08-15 01:45:36
欄目: 編程語言

在PHP中,可以使用in_array()函數來檢查數組中是否存在某個元素。示例如下:

$fruits = array("apple", "banana", "orange");

if (in_array("apple", $fruits)) {
    echo "apple is in the array";
} else {
    echo "apple is not in the array";
}

上述代碼中,首先定義了一個名為$fruits的數組,然后使用in_array()函數檢查數組中是否存在"apple"元素。如果存在,則輸出"apple is in the array";如果不存在,則輸出"apple is not in the array"。

0