Returns part of haystack
string starting from and including the
first
occurrence of needle
to the end of
haystack
.
This function is case-sensitive. For case-insensitive searches, use stristr().
If you only want to determine if a particular needle
occurs within haystack
, use the faster and less memory
intensive function strpos() instead.