Annotation of embedaddon/php/ext/ereg/tests/ereg_replace_error_001.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Test ereg_replace() function : error conditions - wrong number of args
                      3: --FILE--
                      4: <?php
                      5: /* Prototype  : proto string ereg_replace(string pattern, string replacement, string string)
                      6:  * Description: Replace regular expression 
                      7:  * Source code: ext/standard/reg.c
                      8:  * Alias to functions: 
                      9:  */
                     10: 
                     11: echo "*** Testing ereg_replace() : error conditions ***\n";
                     12: 
                     13: 
                     14: //Test ereg_replace with one more than the expected number of arguments
                     15: echo "\n-- Testing ereg_replace() function with more than expected no. of arguments --\n";
                     16: $pattern = 'string_val';
                     17: $replacement = 'string_val';
                     18: $string = 'string_val';
                     19: $extra_arg = 10;
                     20: var_dump( ereg_replace($pattern, $replacement, $string, $extra_arg) );
                     21: 
                     22: // Testing ereg_replace with one less than the expected number of arguments
                     23: echo "\n-- Testing ereg_replace() function with less than expected no. of arguments --\n";
                     24: $pattern = 'string_val';
                     25: $replacement = 'string_val';
                     26: var_dump( ereg_replace($pattern, $replacement) );
                     27: 
                     28: echo "Done";
                     29: ?>
                     30: --EXPECTF--
                     31: *** Testing ereg_replace() : error conditions ***
                     32: 
                     33: -- Testing ereg_replace() function with more than expected no. of arguments --
                     34: 
                     35: Deprecated: Function ereg_replace() is deprecated in %s on line %d
                     36: 
                     37: Warning: ereg_replace() expects exactly 3 parameters, 4 given in %s on line %d
                     38: NULL
                     39: 
                     40: -- Testing ereg_replace() function with less than expected no. of arguments --
                     41: 
                     42: Deprecated: Function ereg_replace() is deprecated in %s on line %d
                     43: 
                     44: Warning: ereg_replace() expects exactly 3 parameters, 2 given in %s on line %d
                     45: NULL
                     46: Done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>