Lines Matching refs:preg_match
2 Test preg_match() function : error conditions - bad regular expressions
6 …* proto int preg_match(string pattern, string subject [, array subpatterns [, int flags [, int of…
11 * Testing how preg_match reacts to being passed the wrong type of regex argument
13 echo "*** Testing preg_match() : error conditions ***\n";
23 var_dump(preg_match($regex_value, $subject));
26 var_dump(preg_match($regex_value, $subject));
29 *** Testing preg_match() : error conditions ***
33 Warning: preg_match(): Delimiter must not be alphanumeric or backslash in %spreg_match_error1.php o…
38 Warning: preg_match(): No ending delimiter '/' found in %spreg_match_error1.php on line %d
43 Warning: preg_match(): Unknown modifier '/' in %spreg_match_error1.php on line %d
48 Warning: preg_match(): Unknown modifier 'F' in %spreg_match_error1.php on line %d
53 Warning: preg_match() expects parameter 1 to be string, array given in %spreg_match_error1.php on l…
59 Warning: preg_match() expects parameter 1 to be string, object given in %spreg_match_error1.php on …