Is there a function that lets me do what stristr does except with an array
$find = array("tom", 'dick', 'harry'); $look_in = 'my name is tom whats yours'; $rest_of_the_str = stristr($look_in, $find); //tom whats yours