diff options
author | Egon Schmid <eschmid@php.net> | 2000-02-23 16:38:38 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2000-02-23 16:38:38 +0000 |
commit | 11e240548915468de1319df5d85dde45e5cb0246 (patch) | |
tree | 276b7da96d2448eca6f05952d2409c50df7b99d4 /ext/pcre/php_pcre.c | |
parent | 324391bc30e38bc2b1f9af949bada261e93df8d2 (diff) | |
download | php-git-11e240548915468de1319df5d85dde45e5cb0246.tar.gz |
More protos.
Diffstat (limited to 'ext/pcre/php_pcre.c')
-rw-r--r-- | ext/pcre/php_pcre.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index fe7e472aa0..1b018f259b 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -499,7 +499,7 @@ static void _pcre_match(INTERNAL_FUNCTION_PARAMETERS, int global) /* }}} */ -/* {{{ proto int preg_match(string pattern, string subject [, array subpatterns ]) +/* {{{ proto int preg_match(string pattern, string subject [, array subpatterns]) Perform a Perl-style regular expression match */ PHP_FUNCTION(preg_match) { @@ -508,7 +508,7 @@ PHP_FUNCTION(preg_match) /* }}} */ -/* {{{ proto int preg_match_all(string pattern, string subject, array subpatterns [, int order ]) +/* {{{ proto int preg_match_all(string pattern, string subject, array subpatterns [, int order]) Perform a Perl-style global regular expression match */ PHP_FUNCTION(preg_match_all) { @@ -841,7 +841,7 @@ static char *_php_replace_in_subject(zval *regex, zval *replace, zval **subject) /* {{{ proto string preg_replace(string|array regex, string|array replace, string|array subject) - Perform Perl-style regular expression replacement */ + Perform Perl-style regular expression replacement */ PHP_FUNCTION(preg_replace) { zval **regex, @@ -907,7 +907,7 @@ PHP_FUNCTION(preg_replace) /* {{{ proto array preg_split(string pattern, string subject [, int limit [, int flags]]) - split string into an array using a perl-style regular expression as a delimiter */ + 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 */ |