当前位置:Gxlcms > PHP教程 > php判断数组中是否存在某值

php判断数组中是否存在某值

时间:2021-07-01 10:21:17 帮助过:6人阅读

PHP in_array() 函数检查数组中是否存在某个值,如果存在则返回 TRUE ,否则返回 FALSE 。

语法:(推荐学习:PHP编程从入门到精通)

bool in_array( mixed needle, array array [, bool strict] )

参数说明:

needle,需要在数组中搜索的值,如果是字符串,则区分大小写

array,需要检索的数组

strict,可选,如果设置为 TRUE ,则还会对 needle 与 array 中的值类型进行检查

例子:

<?php
$arr_a = array("a", "b", "c", 1);
if(in_array("a", $arr_a)){
  echo '字符 a 在 $arr_a 数组中存在';
} else {
  echo '字符 a 在 $arr_a 数组中不存在';
}
?>

字符 a 在 $arr_a 数组中存在严格检查的例子:

<?php
$arr_a = array("a", "b", "c", 1);
if(in_array("1", $arr_a, TRUE)){
  echo '字符 1 在 $arr_a 数组中存在';
} else {
  echo '字符 1 在 $arr_a 数组中不存在';
}
?>

以上就是php判断数组中是否存在某值的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行