Returns the remainder of the string (from the matching point) if the lookup is successful, or false if the string is not found.
Version support: PHP 3+
Syntax:
stristr(string,find)
Description:
string required. Specifies the string to be searched for.
find required. Specifies the characters to search for. If the argument is a number, searches for characters that match the ASCII value for that number.
Tip:
This function is binary safe.
This function is not case sensitive. For case-sensitive searches, use strstr().
Example:
Example 1