Difference between strstr and stristr in php
strstr() and stristr both are used to find the first occurence of the string.
stristr( ) is case insensitive and strstr( ) is case sensitive
strstr() - Find first occurrence of a string
Syntax: strstr ($string, string)
Example:
View Post














