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