diff --git a/reference/strings/functions/strstr.xml b/reference/strings/functions/strstr.xml index 494b8b5e48..060a300fea 100644 --- a/reference/strings/functions/strstr.xml +++ b/reference/strings/functions/strstr.xml @@ -1,5 +1,5 @@ - + @@ -43,6 +43,15 @@ print $domain; // prints @example.com + + + + If you only want to determine if a particular needle + occours within haystack, use the faster and less memory + intensive function strpos instead. + + + See also ereg, preg_match, strchr, stristr,