PHP Developer Question:

Described the functionality of the function strstr and stristr?

PHP Developer Interview Question
PHP Developer Interview Question

Answer:

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.


Previous QuestionNext Question
How to send mail using JavaScript?Can you please explain the difference between ereg_replace() and eregi_replace()?