tryphp_func_in_array2.php:
"; } else { echo "Match not found
"; } if (in_array("Glenn",$people, TRUE)) { echo "Match found
"; } else { echo "Match not found
"; } if (in_array(23,$people, TRUE)) { echo "Match found
"; } else { echo "Match not found
"; } ?>
Match not found
Match found
Match found