I just didnt know what it would be. but in case any1 else has this problem, here is how you do it.
$string = "PHP";
$container = "I like to play with PHP in a bucket of shrimp";
if(strstr($container,$string)) {
echo "found it";
} else {
echo "not found.";
}
in this case, it would be found because the string is somewhere in the container.