檢查數組中是否存在某個值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
相關文章
相關標籤/搜索