strstr() returns part of a given string from the first occurrence of a given substring to the end of the string.
For example:
strstr("user@example.com","@") will return "@example.com".
stristr() is idential to strstr() except that it is case insensitive.
For example:
strstr("user@example.com","@") will return "@example.com".
stristr() is idential to strstr() except that it is case insensitive.
23:12
PHP Interview Questions and Answers
0 comments:
Post a Comment