Annotation of embedaddon/php/ext/standard/tests/strings/chr_error.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Test chr() function : error conditions
                      3: --FILE--
                      4: <?php
                      5: 
                      6: /* Prototype  : string chr  ( int $ascii  )
                      7:  * Description: Return a specific character
                      8:  * Source code: ext/standard/string.c
                      9: */
                     10: 
                     11: echo "*** Testing chr() : error conditions ***\n";
                     12: 
                     13: echo "\n-- Testing chr() function with no arguments --\n";
                     14: var_dump( chr() );
                     15: 
                     16: echo "\n-- Testing chr() function with more than expected no. of arguments --\n";
                     17: $extra_arg = 10;
                     18: var_dump( chr(72, $extra_arg) );
                     19: 
                     20: ?>
                     21: ===DONE===
                     22: --EXPECTF--
                     23: *** Testing chr() : error conditions ***
                     24: 
                     25: -- Testing chr() function with no arguments --
                     26: 
                     27: Warning: Wrong parameter count for chr() in %s on line %d
                     28: NULL
                     29: 
                     30: -- Testing chr() function with more than expected no. of arguments --
                     31: 
                     32: Warning: Wrong parameter count for chr() in %s on line %d
                     33: NULL
                     34: ===DONE===

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