In PHP what is the difference between the functions strstr() and stristr()
2 Likes
Both these functions in PHP are used to find out the first occurrence of the string. The only difference is that - stristr( ) is case insensitive whereas strstr( ) is case sensitive