PHP中的in_array()函数

in_array()函数检查数组中是否存在指定的值。

语法

in_array(find, arr, type)

参数

  • find-要搜索的值

  • arr-搜索数组

  • 类型-执行搜索的模式。如果参数设置为TRUE,则它将在数组中查找搜索字符串和特定类型。

返回

如果在数组中找到该值,则in_array()函数返回TRUE,否则返回FALSE。

示例

以下是一个例子-

<?php
$stu = array("Tom", "Amit", "Peter", "Rahul");
if (in_array("Amit", $stu)) {
   echo "Match!";
} else {
   echo "没有比赛!";
}
?>

输出结果

以下是输出-

Match!

示例

让我们看另一个例子-

<?php
$pro = array("Tom", "Amit", "Peter", "Rahul", 5, 10);
if (in_array(5, $pro, TRUE)) {
   echo "Match!";
} else {
   echo "没有比赛!";
}
?>

输出结果

以下是输出-

Match!