一只名叫tom的猫
in_array() 函数在数组中搜索给定的值。语法in_array(value,array,type)参数value 必需。规定要在数组搜索的值。 array 必需。规定要搜索的数组。 type 可选。如果设置该参数为 true,则检查搜索的数据与数组的值的类型是否相同。如:<?php$people = array("Peter", "Joe", "Glenn", "Cleveland");if (in_array("Glenn",$people)) { echo "Match found"; }else { echo "Match not found"; }?>