What is difference between strstr() and stristr() ?

In PHP both functions are used to find the first occurrence of substring in a string except
stristr() is case-insensitive and strstr is case-sensitive,if no match is found then FALSE will be returned.

Sample

What is difference between strstr() and stristr() ?
Show Buttons
Hide Buttons