From c651161c27dcc1c49c311c39ddfd94fc2d7c569c Mon Sep 17 00:00:00 2001 From: Torben Wilson Date: Wed, 15 Dec 1999 21:05:03 +0000 Subject: [PATCH] Added note about version availability. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@17268 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/pcre.xml | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/functions/pcre.xml b/functions/pcre.xml index e6862d1e06..1c3571a5ba 100644 --- a/functions/pcre.xml +++ b/functions/pcre.xml @@ -9,12 +9,14 @@ forward slash (/), for example. Any character can be used for delimiter as long as it's not alphanumeric or backslash (\). If the delimiter character has to be used in the expression itself, - it needs to be escaped by backslash. + it needs to be escaped by backslash. + The ending delimiter may be followed by various modifiers that affect the matching. - See Pattern Modifiers. + See Pattern Modifiers. + @@ -24,7 +26,8 @@ |(\d{3})-\d+|Sm /^(?i)php[34]/ - + + @@ -35,7 +38,16 @@ 1-\d3-\d3-\d4| - missing starting delimiter - + + + + + + The Perl-compatible regular expression functions are available in + PHP 4 and in PHP 3.0.9 and up. + + +