Home
last modified time | relevance | path

Searched refs:preg_match_all (Results 1 – 25 of 37) sorted by relevance

12

/PHP-5.5/ext/pcre/tests/
H A Dpreg_match_all_error.phpt2 Test preg_match_all() function : error conditions - incorrect number of parameters
9 echo "*** Testing preg_match_all() : error conditions ***\n";
11 echo "\n-- Testing preg_match_all() function with Zero arguments --\n";
12 var_dump(preg_match_all());
13 //Test preg_match_all with one more than the expected number of arguments
21 // Testing preg_match_all withone less than the expected number of arguments
24 var_dump(preg_match_all($pattern));
28 *** Testing preg_match_all() : error conditions ***
30 -- Testing preg_match_all() function with Zero arguments --
35 -- Testing preg_match_all() function with more than expected no. of arguments --
[all …]
H A Dpreg_match_all_basic.phpt2 Test preg_match_all() function : basic functionality
6 * proto int preg_match_all(string pattern, string subject, [array subpatterns [, int flags [, int o…
10 var_dump(preg_match_all('/[0-35-9]/', $string, $match1, PREG_OFFSET_CAPTURE|PREG_PATTERN_ORDER, -10…
12 var_dump(preg_match_all('/[tT]his is a(.*?)\./', $string, $match2, PREG_SET_ORDER)); //finds "This …
14 var_dump(preg_match_all('@\. \\\(.*).@', $string, $match3, PREG_PATTERN_ORDER)); //finds ".\ [...]"…
16 var_dump(preg_match_all('/\d{2}$/', $string, $match4)); //tries to find 2 digits at the end of a st…
18 var_dump(preg_match_all('/(This is a ){2}(.*)\stest/', $string, $match5)); //tries to find "This is…
22 var_dump(preg_match_all('/test/', $string));
23 var_dump(preg_match_all('/this isn\'t in the string/', $string));
24 var_dump(preg_match_all('/world/', $string));
[all …]
H A Dpreg_match_all_error1.phpt2 Test preg_match_all() function : error conditions - bad regular expressions
6 * proto int preg_match_all(string pattern, string subject, array subpatterns [, int flags [, int of…
11 * Testing how preg_match_all reacts to being passed the wrong type of regex argument
13 echo "*** Testing preg_match_all() : error conditions ***\n";
23 var_dump(preg_match_all($regex_value, $subject, $matches1));
27 var_dump(preg_match_all($regex_value, $subject, $matches));
31 *** Testing preg_match_all() : error conditions ***
41 Warning: preg_match_all(): No ending delimiter '/' found in %spreg_match_all_error1.php on line %d
47 Warning: preg_match_all(): Unknown modifier '/' in %spreg_match_all_error1.php on line %d
53 Warning: preg_match_all(): Unknown modifier 'F' in %spreg_match_all_error1.php on line %d
[all …]
H A Dpreg_match_all_error2.phpt2 Test preg_match_all() function : error conditions - wrong arg types
6 * proto int preg_match_all(string pattern, string subject, array subpatterns [, int flags [, int of…
11 * Testing how preg_match_all reacts to being passed the wrong type of input argument
13 echo "*** Testing preg_match_all() : error conditions ***\n";
16 var_dump(preg_match_all($regex, $value, $matches));
21 var_dump(preg_match_all($regex, $value, $matches));
27 *** Testing preg_match_all() : error conditions ***
29 Warning: preg_match_all() expects parameter 2 to be string, object given in %spreg_match_all_error2…
35 Warning: preg_match_all() expects parameter 2 to be string, array given in %spreg_match_all_error2.…
H A Dmultiline.phpt6 var_dump(preg_match_all('/^.{2,3}$/', "aei\nou", $dummy));
7 var_dump(preg_match_all('/^.{2,3}$/', "aei\nou\n", $dummy));
8 var_dump(preg_match_all('/^.{2,3}$/m', "aei\nou", $dummy));
9 var_dump(preg_match_all('/^.{2,3}$/m', "aei\nou\n", $dummy));
H A Dpreg_match_all_error3.phpt2 Test preg_match_all() function : error conditions
6 * proto int preg_match_all(string pattern, string subject, array subpatterns [, int flags [, int of…
10 * Testing how preg_match_all reacts to being passed the wrong type of subpatterns array argument
12 echo "*** Testing preg_match_all() : error conditions ***\n";
15 var_dump(preg_match_all($regex, $subject, 'test'));
H A Dmatch_flags.phpt2 preg_match_all() flags
6 var_dump(preg_match_all('/(.)x/', 'zxax', $match, PREG_PATTERN_ORDER));
9 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER));
12 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_OFFSET_CAPTURE));
15 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER | PREG_OFFSET_CAPTURE));
H A Dpreg_match_all_edit_basic.phpt2 Test preg_match_all() function : basic functionality
5 /* Prototype : proto int preg_match_all(string pattern, string subject, array subpatterns [, int f…
13 var_dump(preg_match_all('/[0-35-9]/', $string, $match1, PREG_OFFSET_CAPTURE|PREG_PATTERN_ORDER, -10…
16 var_dump(preg_match_all('/[tT]his is a(.*?)\./', $string, $match2, PREG_SET_ORDER)); //fin…
19 var_dump(preg_match_all('@\. \\\(.*).@', $string, $match3, PREG_PATTERN_ORDER)); //f…
22 var_dump(preg_match_all('/\d{2}$/', $string, $match4)); //tries to find 2 digits at the en…
25 var_dump(preg_match_all('/(This is a ){2}(.*)\stest/', $string, $match5)); //tries to find "T…
H A Dbug42298.phpt6 preg_match_all('/\S\S/u', $str, $m); var_dump($m);
7 preg_match_all('/\S{2}/u', $str, $m); var_dump($m);
10 preg_match_all('/\W\W/u', $str, $m); var_dump($m);
11 preg_match_all('/\W{2}/u', $str, $m); var_dump($m);
H A Ddollar_endonly.phpt6 var_dump(preg_match_all('/^\S+.+$/', "aeiou\n", $m));
9 var_dump(preg_match_all('/^\S+.+$/D', "aeiou\n", $m));
12 var_dump(preg_match_all('/^\S+\s$/D', "aeiou\n", $m));
H A Dbacktrack_limit.phpt5 if (@preg_match_all('/\p{N}/', '0123456789', $dummy) === false) {
14 var_dump(preg_match_all('/.*\p{N}/', '0123456789', $dummy));
17 var_dump(preg_match_all('/\p{Nd}/', '0123456789', $dummy));
H A Dbug41638.phpt7 preg_match_all("/(['\"])((.*(\\\\\\1)*)*)\\1/sU",$str,$str_instead);
11 preg_match_all("/(['\"])((?:\\\\\\1|.)*)\\1/sU", $str, $str_instead);
14 preg_match_all("/(['\"])(.*)(?<!\\\\)\\1/sU", $str, $str_instead);
H A Drecursion_limit.phpt5 if (@preg_match_all('/\p{N}/', '0123456789', $dummy) === false) {
14 var_dump(preg_match_all('/\p{Ll}(\p{L}((\p{Ll}\p{Ll})))/', 'aeiou', $dummy));
17 var_dump(preg_match_all('/\p{Ll}\p{L}\p{Ll}\p{Ll}/', 'aeiou', $dummy));
H A D002.phpt7 var_dump(preg_match_all());
8 var_dump(preg_match_all('//', '', $dummy, 0xdead));
23 Warning: preg_match_all() expects at least 2 parameters, 0 given in %s002.php on line 4
26 Warning: preg_match_all(): Invalid flags specified in %s002.php on line 5
H A Dbug66121.phpt12 preg_match_all('/(?<!ක)/u', 'ම', $matches, PREG_OFFSET_CAPTURE);
17 var_dump(preg_match_all('/(?<!ක)/u', "\xFCම", $matches, PREG_OFFSET_CAPTURE));
18 var_dump(preg_match_all('/(?<!ක)/u', "\xFCම", $matches, PREG_OFFSET_CAPTURE));
H A Dbug27011.phpt2 Bug #27011 (segfault in preg_match_all())
6 var_dump(preg_match_all('|(\w+)://([^\s"<]*[\w+#?/&=])|', "This is a text string", $matches, PREG_S…
H A Dbug34790.phpt2 Bug #34790 (preg_match_all(), named capturing groups, variable assignment/return => crash)
7 preg_match_all('/(?P<word>the)/', $string, $matches);
H A Dbug52971.phpt11 preg_match_all($pattern, $message, $match, PREG_OFFSET_CAPTURE);
15 preg_match_all($pattern, $message, $match, PREG_OFFSET_CAPTURE);
H A D004.phpt6 var_dump(preg_match_all('/((?:(?:unsigned|struct)\s+)?\w+)(?:\s*(\*+)\s+|\s+(\**))(\w+(?:\[\s*\w*\s…
9 var_dump(preg_match_all('/(?:\([^)]+\))?(&?)([\w>.()-]+(?:\[\w+\])?)\s*,?((?:\)*\s*=)?)/S', '&a, b,…
12 var_dump(preg_match_all('/zend_parse_parameters(?:_ex\s*\([^,]+,[^,]+|\s*\([^,]+),\s*"([^"]*)"\s*,\…
H A D003.phpt2 abusing preg_match_all()
7 var_dump(preg_match_all('~
H A Dskip_003.inc3 if (@preg_match_all('/\p{N}/', '0123456789', $dummy) === false) {
H A Dbug40909.phpt12 if ($result =preg_match_all($pattern, $context, $match))
H A Dpcre_anchored.phpt5 if (@preg_match_all('/\p{N}/', '0123456789', $dummy) === false) {
H A Dbug63055.phpt19 preg_match_all("/(\d)+/", "foo123456bar", $matches);
/PHP-5.5/scripts/dev/
H A Dcheck_parameters.php116preg_match_all('/((?:(?:unsigned|struct)\s+)?\w+)(?:\s*(\*+)\s+|\s+(\**))(\w+(?:\[\s*\w*\s*\])?)\s…
125 preg_match_all('/(\**)\s*(\w+(?:\[\s*\w*\s*\])?)\s*(=?)/S', $x[6], $y, PREG_SET_ORDER);
169preg_match_all('/(?:\([^)]+\))?(&?)([\w>.()-]+(?:\[\w+\])?)\s*,?((?:\)*\s*=)?)/S', $str, $m, PREG_…
203 …if (preg_match_all('/zend_parse_parameters(?:_ex\s*\([^,]+,[^,]+|\s*\([^,]+),\s*"([^"]*)"\s*,\s*([…

Completed in 38 milliseconds

12