Lines Matching refs:preg_quote
2 Test preg_quote() function : error conditions - wrong numbers of parameters
6 * proto string preg_quote(string str [, string delim_char])
9 echo "*** Testing preg_quote() : error conditions ***\n";
11 echo "\n-- Testing preg_quote() function with Zero arguments --\n";
12 var_dump(preg_quote());
13 //Test preg_quote with one more than the expected number of arguments
14 echo "\n-- Testing preg_quote() function with more than expected no. of arguments --\n";
18 var_dump(preg_quote($str, $delim_char, $extra_arg));
22 *** Testing preg_quote() : error conditions ***
24 -- Testing preg_quote() function with Zero arguments --
26 Warning: preg_quote() expects at least 1 parameter, 0 given in %spreg_quote_error.php on line %d
29 -- Testing preg_quote() function with more than expected no. of arguments --
31 Warning: preg_quote() expects at most 2 parameters, 3 given in %spreg_quote_error.php on line %d