PHP

in_array在PHP中怎样查找元素

小樊
81
2024-09-14 15:43:55
栏目: 编程语言

在 PHP 中,in_array() 函数用于检查一个数组中是否存在指定的值。如果该值存在,则返回 true,否则返回 false

函数原型:

bool in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] )

参数说明:

示例:

$array = array("apple", "banana", "cherry");

if (in_array("apple", $array)) {
  echo "apple exists in array";
} else {
  echo "apple does not exist in array";
}

// 输出结果:apple exists in array

使用严格模式进行比较:

$array = array("1", 2, 3);

if (in_array(1, $array, true)) {
  echo "1 exists in array with strict mode";
} else {
  echo "1 does not exist in array with strict mode";
}

// 输出结果:1 does not exist in array with strict mode

0
看了该问题的人还看了