diff options
author | Egon Schmid <eschmid@php.net> | 1999-08-19 20:31:57 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 1999-08-19 20:31:57 +0000 |
commit | 17f132f9ee4ab6734ea02b0c8fc1425ae1fd9a19 (patch) | |
tree | eea5fc1fac6159471b918c0cff9ee693eb53f57d /ext/pcre/php_pcre.c | |
parent | 67e81da36bf0bcfaecae14ec06df35ae69d4f138 (diff) | |
download | php-git-17f132f9ee4ab6734ea02b0c8fc1425ae1fd9a19.tar.gz |
Here was also something missing
Diffstat (limited to 'ext/pcre/php_pcre.c')
-rw-r--r-- | ext/pcre/php_pcre.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index f11959df7e..79b34e8c5a 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -869,7 +869,8 @@ PHP_FUNCTION(preg_replace) /* }}} */ -/* {{{ proto preg_split(string pattern, string subject [, int limit ]) */ +/* {{{ proto array preg_split(string pattern, string subject [, int limit ]) + split string into an array using a perl-style regular expression as a delimiter */ PHP_FUNCTION(preg_split) { zval *regex, /* Regular expression to split by */ |