From 117471d39b05ebb5b59658e833a003555357651d Mon Sep 17 00:00:00 2001 From: Yasuo Ohgaki Date: Tue, 12 Feb 2002 09:13:12 +0000 Subject: [PATCH] Clarify strstr() description a little git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@70080 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/strings.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/functions/strings.xml b/functions/strings.xml index 2956c27aa5..933136cee8 100644 --- a/functions/strings.xml +++ b/functions/strings.xml @@ -1,5 +1,5 @@ - + String functions Strings @@ -3172,8 +3172,9 @@ $var = strspn("42 is the answer, what is the question ...", "1234567890"); stringneedle - Returns all of haystack from the first - occurrence of needle to the end. + Returns part of haystack string from the + first occurrence of needle to the end of + haystack. If needle is not found, returns &false;.