diff options
Diffstat (limited to 'ext/standard/string.c')
-rw-r--r-- | ext/standard/string.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/string.c b/ext/standard/string.c index f651c868bd..333bc1f862 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -773,7 +773,7 @@ PHP_FUNCTION(strpos) /* }}} */ /* {{{ proto int strrpos(string haystack, string needle) - Find the last occurrence of a character in a string within another */ + Find position of last occurrence of a character in a string within another */ PHP_FUNCTION(strrpos) { zval **haystack, **needle; @@ -2681,8 +2681,8 @@ PHP_FUNCTION(str_pad) /* }}} */ -/* {{{ proto mixed sscanf(string str,string format, ...) - implements an ANSI compatible sscanf. */ +/* {{{ proto mixed sscanf(string str, string format [, string ...]) + Implements an ANSI C compatible sscanf */ PHP_FUNCTION(sscanf) { zval **format; |