Home
last modified time | relevance | path

Searched refs:convert_uudecode (Results 1 – 9 of 9) sorted by relevance

/PHP-5.5/ext/standard/tests/strings/
H A Dconvert_uudecode_error.phpt2 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() );
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 --
[all …]
H A Dconvert_uudecode_variation1.phpt2 Test convert_uudecode() function : usage variations - test values for $data argument
6 /* Prototype : string convert_uudecode ( string $data )
11 echo "*** Testing convert_uudecode() function: with unexpected inputs for 'data' argument ***\n";
71 // loop through with each element of the $data array to test convert_uudecode() function
75 var_dump( convert_uudecode($input) );
84 *** Testing convert_uudecode() function: with unexpected inputs for 'data' argument ***
87 Warning: convert_uudecode(): The given parameter is not a valid uuencoded string in %s on line %d
123 Warning: convert_uudecode() expects parameter 1 to be string, array given in %s on line %d
127 Warning: convert_uudecode() expects parameter 1 to be string, array given in %s on line %d
131 Warning: convert_uudecode() expects parameter 1 to be string, array given in %s on line %d
[all …]
H A Duuencode.phpt7 var_dump(convert_uudecode(array()));
10 var_dump(convert_uudecode(""));
12 var_dump(convert_uudecode("!@#$%^YUGFDFGHJKLUYTFBNMLOYT"));
13 var_dump(convert_uudecode($enc));
15 var_dump(convert_uudecode($enc));
16 var_dump(convert_uudecode(substr($enc, 0, -10)));
24 Warning: convert_uudecode() expects parameter 1 to be string, array given in %s on line %d
38 Warning: convert_uudecode(): The given parameter is not a valid uuencoded string in %s on line %d
H A Dconvert_uudecode_basic.phpt2 Test convert_uudecode() function : basic functionality
6 /* Prototype : string convert_uudecode ( string $data )
11 echo "*** Testing convert_uudecode() : basic functionality ***\n";
32 // loop through with each element of the $strings array to test convert_uudecode() function
37 $decode = convert_uudecode($encode);
52 *** Testing convert_uudecode() : basic functionality ***
H A Dbug67252.phpt2 Bug #67252 (convert_uudecode out-of-bounds read)
7 var_dump(convert_uudecode($a));
12 Warning: convert_uudecode(): The given parameter is not a valid uuencoded string in %s on line %d
/PHP-5.5/ext/standard/
H A Dphp_uuencode.h24 PHP_FUNCTION(convert_uudecode);
H A Duuencode.c210 PHP_FUNCTION(convert_uudecode) in PHP_FUNCTION() argument
H A Dbasic_functions.c2897 PHP_FE(convert_uudecode, arginfo_convert_uudecode)
/PHP-5.5/
H A DNEWS1137 . Fixed bug #67252 (convert_uudecode out-of-bounds read). (Stas)
10089 - Fixed bug #29821 (Fixed possible crashes in convert_uudecode() on invalid

Completed in 62 milliseconds