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