检查数组中是否存在某个值in_array(value,array,type)

复制代码<?php
$people = array("Peter", "Joe", "Glenn", "Cleveland");
if (in_array("Glenn",$people)){
echo "Match found";
}else{
echo "Match not found";
}
?>
Match found


你可能感兴趣的:(in_array)