php语法如何判断数组中是否存在某一个字段中

2024年09月11日 建站教程

php开发中,如何判断数组中是否存在于某一个字段中,下面web建站小编给大家简单介绍一下具体实现代码!

利用in_array函数实现

$arr = array('apple', 'banana', 'orange');
if(in_array('apple', $arr)){
  echo 'Value "apple" exists in the array';
} else {
  echo 'Value "apple" does not exist in the array';
}

本文链接:http://so.lmcjl.com/news/12795/

展开阅读全文
相关内容