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.”。