Yep. You've got a choice of strpos() (probably the fastest but needs advance preperation to handle both upper- and lower-case), preg_match() (a bit slower but can handle mixed case without blinking), or ereg_match() (not much really going for this with preg_match() available).
See the manual for each of these.