inarray
是一個 PHP 函數,用于檢查數組中是否存在指定的值。以下是如何使用 inarray
函數的示例:
<?php
// 定義一個數組
$array = array("apple", "banana", "orange", "grape");
// 要查找的值
$value_to_find = "orange";
// 使用 inarray 函數檢查數組中是否存在該值
if (inarray($value_to_find, $array)) {
echo "Value found in the array.";
} else {
echo "Value not found in the array.";
}
?>
在這個示例中,我們首先定義了一個包含四個元素的數組 $array
。然后,我們指定要查找的值 $value_to_find
。接下來,我們使用 inarray
函數檢查 $value_to_find
是否存在于 $array
中。如果存在,我們輸出 “Value found in the array.”,否則輸出 “Value not found in the array.”。