Home »

What is the functionality of the functions STRSTR() and STRISTR()?

Question ListCategory: PHPWhat is the functionality of the functions STRSTR() and STRISTR()?
denielshakespeare5 author asked 8 years ago
1 Answers
jamessmith05 author answered 8 years ago

string strstr ( string haystack, string needle ) returns part of haystack string from the first occurrence of needle to the end of haystack. This function is case-sensitive.stristr() is idential to strstr() except that it is case insensitive.

Please login or Register to Submit Answer