stripos does a case insensitive search. Its faster than any other method as it runs within the C code for PHP instead of using the regex parser which is slower.
One thing to always remember, if there is a built-in PHP function that can do a string manipulation for you, always use that before any regex option as it is always faster.