Lines Matching refs:eregi_replace
2 Test eregi_replace() function : error conditions - wrong number of args
5 /* Prototype : proto string eregi_replace(string pattern, string replacement, string string)
11 echo "*** Testing eregi_replace() : error conditions ***\n";
14 //Test eregi_replace with one more than the expected number of arguments
15 echo "\n-- Testing eregi_replace() function with more than expected no. of arguments --\n";
20 var_dump( eregi_replace($pattern, $replacement, $string, $extra_arg) );
22 // Testing eregi_replace with one less than the expected number of arguments
23 echo "\n-- Testing eregi_replace() function with less than expected no. of arguments --\n";
26 var_dump( eregi_replace($pattern, $replacement) );
31 *** Testing eregi_replace() : error conditions ***
33 -- Testing eregi_replace() function with more than expected no. of arguments --
35 Deprecated: Function eregi_replace() is deprecated in %s on line %d
37 Warning: eregi_replace() expects exactly 3 parameters, 4 given in %s on line %d
40 -- Testing eregi_replace() function with less than expected no. of arguments --
42 Deprecated: Function eregi_replace() is deprecated in %s on line %d
44 Warning: eregi_replace() expects exactly 3 parameters, 2 given in %s on line %d