Copy code The code is as follows:
require_once("Zend/Loader.php");
Zend_Loader::loadClass("Zend_Validate");
Zend_Loader::loadClass("Zend_Validate_InArray");
function check_inarray($person)
{
$array = array('Zhang San','Li Si','Wang Wu','Zhao Liu','Tian Qi');
$Validate = new Zend_Validate_InArray($array);
if ($Validate -> isValid($person))
{
echo "There is this person!";
}
else
{
echo "There is no such person!";
}
}
$person = 'Zhang San';
check_inarray($person);
?>
http://www.bkjia.com/PHPjc/741262.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/741262.htmlTechArticleCopy the code as follows: ?php require_once("Zend/Loader.php"); Zend_Loader::loadClass(" Zend_Validate"); Zend_Loader::loadClass("Zend_Validate_InArray"); function check_inarray($p...