Lines Matching refs:chr
2 Test chr() function : error conditions
6 /* Prototype : string chr ( int $ascii )
11 echo "*** Testing chr() : error conditions ***\n";
13 echo "\n-- Testing chr() function with no arguments --\n";
14 var_dump( chr() );
16 echo "\n-- Testing chr() function with more than expected no. of arguments --\n";
18 var_dump( chr(72, $extra_arg) );
23 *** Testing chr() : error conditions ***
25 -- Testing chr() function with no arguments --
27 Warning: Wrong parameter count for chr() in %s on line %d
30 -- Testing chr() function with more than expected no. of arguments --
32 Warning: Wrong parameter count for chr() in %s on line %d