Usando uma matriz como agulhas em strpos

Como você usa o strpospara uma série de agulhas ao pesquisar uma string? Por exemplo: $find_letters = array('a', 'c', 'd'); $string = 'abcdefg'; if(strpos($string, $find_letters) !== false) { echo 'All the letters are found in the string!'; } Porque ao usar isso não funcionaria, seria bom se...