Return to hebrevc_error.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / strings |
1.1 misho 1: --TEST-- 2: Test hebrevc() function : error conditions 3: --FILE-- 4: <?php 5: 6: /* Prototype : string hebrevc ( string $hebrew_text [, int $max_chars_per_line ] ) 7: * Description: Convert logical Hebrew text to visual text 8: * Source code: ext/standard/string.c 9: */ 10: 11: echo "*** Testing hebrevc() : error conditions ***\n"; 12: 13: echo "\n-- Testing hebrevc() function with no arguments --\n"; 14: var_dump( hebrevc() ); 15: 16: echo "\n-- Testing hebrevc() function with more than expected no. of arguments --\n"; 17: $extra_arg = 10; 18: var_dump( hebrevc("Hello World", 5, $extra_arg) ); 19: 20: ?> 21: ===DONE=== 22: --EXPECTF-- 23: *** Testing hebrevc() : error conditions *** 24: 25: -- Testing hebrevc() function with no arguments -- 26: 27: Warning: hebrevc() expects at least 1 parameter, 0 given in %s on line %d 28: NULL 29: 30: -- Testing hebrevc() function with more than expected no. of arguments -- 31: 32: Warning: hebrevc() expects at most 2 parameters, 3 given in %s on line %d 33: NULL 34: 35: ===DONE===