(PHP4 )
bool in_array (mixed needle, array haystack)
bool in_array
Searches haystack for needle and returns true if it is found in the array, false otherwise.
Example 1. In_array() example
$os = array ("Mac", "NT", "Irix", "Linux"); if (in_array ("Irix", $os)) print "Got Irix";