diff options
author | Andrey Hristov <andrey@php.net> | 1999-05-26 15:22:02 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 1999-05-26 15:22:02 +0000 |
commit | 0062ae621834c38b7cb065e37dc8d8bbce8448f3 (patch) | |
tree | 6690e6424da5e4dde5ec79124324ab7e42f368e7 /ext/pcre/php_pcre.h | |
parent | 033858e13d77186b2a4ce1b1833955e43d9d4b74 (diff) | |
download | php-git-0062ae621834c38b7cb065e37dc8d8bbce8448f3.tar.gz |
A few changes here.
First of all, as per extensive discussion on the list, the functions are now
prefixed with "preg" instead of "pcre".
Secondly, global matching is now possible using preg_match_all. Please, give
suggestions on a better name if this one doesn't sit well with you. Possible
names are preg_global_match and preg_gmatch.
preg_match_all takes 4 arguments: a regex pattern, a subject string,
the array for capturing subpatterns, and a parameter that tells how the results
in the subpatterns array are arranged.
Basically, preg_match_all will go through the subject string and try to capture
all the matches that it finds, not just the first one like preg_match.
4th parameter can be PREG_PATTERN_ORDER (default) or PREG_SET_ORDER.
Example:
preg_match_all("|</?([^>]+)>|", "<div align=left>a test</div>", $out, PREG_PATTERN_ORDER);
This returns results so that $out[0] is an array of full pattern matches, $out[1] is an array
of first captured subpattern matches, and so on.
$out[0] -> ("<div align=left>", "</div>")
$out[1] -> ("div align=left", "div")
Example:
preg_match_all("|</?([^>]+)>|", "<div align=left>a test</div>", $out, PREG_SET_ORDER);
This returns results so that $out[0] is an array of first full pattern match and subpatterns,
$out[1] is an array of second full pattern match and subpatterns.
$out[0] -> ("<div align=left>", "div align=left")
$out[1] -> ("</div>", "div")
If anyone has a better name for these PREG_ constants and also which one should be the default,
I'd like to hear it.
Diffstat (limited to 'ext/pcre/php_pcre.h')
-rw-r--r-- | ext/pcre/php_pcre.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/pcre/php_pcre.h b/ext/pcre/php_pcre.h index 551f35b5a4..8bf2955b54 100644 --- a/ext/pcre/php_pcre.h +++ b/ext/pcre/php_pcre.h @@ -41,8 +41,9 @@ extern int php_minit_pcre(INIT_FUNC_ARGS); extern int php_mshutdown_pcre(SHUTDOWN_FUNC_ARGS); extern int php_rinit_pcre(INIT_FUNC_ARGS); -PHP_FUNCTION(pcre_match); -PHP_FUNCTION(pcre_replace); +PHP_FUNCTION(preg_match); +PHP_FUNCTION(preg_match_all); +PHP_FUNCTION(preg_replace); extern zend_module_entry pcre_module_entry; #define pcre_module_ptr &pcre_module_entry |