Searched refs:convert_uuencode (Results 1 – 8 of 8) sorted by relevance
/PHP-7.2/ext/standard/tests/strings/ |
H A D | convert_uuencode_error.phpt | 2 Test convert_uuencode() function : error conditions 6 /* Prototype : string convert_uuencode ( string $data ) 11 echo "*** Testing convert_uuencode() : error conditions ***\n"; 14 var_dump( convert_uuencode() ); 16 echo "\n-- Testing convert_uuencode() function with more than expected no. of arguments --\n"; 18 var_dump( convert_uuencode(72, $extra_arg) ); 23 *** Testing convert_uuencode() : error conditions *** 27 Warning: convert_uuencode() expects exactly 1 parameter, 0 given in %s on line %d 30 -- Testing convert_uuencode() function with more than expected no. of arguments -- 32 Warning: convert_uuencode() expects exactly 1 parameter, 2 given in %s on line %d
|
H A D | convert_uuencode_variation1.phpt | 2 Test convert_uuencode() function : usage variations - test values for $data argument 6 /* Prototype : string convert_uuencode ( string $data ) 11 echo "*** Testing convert_uuencode() function: with unexpected inputs for 'data' argument ***\n"; 71 // loop through with each element of the $data array to test convert_uuencode() function 75 var_dump( bin2hex(convert_uuencode($input)) ); 84 *** Testing convert_uuencode() function: with unexpected inputs for 'data' argument *** 105 Warning: convert_uuencode() expects parameter 1 to be string, array given in %s on line %d 109 Warning: convert_uuencode() expects parameter 1 to be string, array given in %s on line %d 113 Warning: convert_uuencode() expects parameter 1 to be string, array given in %s on line %d 131 Warning: convert_uuencode() expects parameter 1 to be string, resource given in %s on line %d
|
H A D | convert_uuencode_basic.phpt | 2 Test convert_uuencode() function : basic functionality 6 /* Prototype : string convert_uuencode ( string $data ) 11 echo "*** Testing convert_uuencode() : basic functionality ***\n"; 20 "Here is a simple string to test convert_uuencode/decode", 32 // loop through with each element of the $strings array to test convert_uuencode() function 36 var_dump( convert_uuencode($string) ); 44 *** Testing convert_uuencode() : basic functionality ***
|
H A D | uuencode.phpt | 6 var_dump(convert_uuencode(array())); 9 var_dump(convert_uuencode("")); 11 var_dump($enc = convert_uuencode("~!@#$%^&*()_}{POIUYTREWQQSDFGHJKL:<MNBVCXZ")); 14 var_dump($enc = convert_uuencode("not very sophisticated")); 21 Warning: convert_uuencode() expects parameter 1 to be string, array given in %s on line %d
|
H A D | convert_uudecode_basic.phpt | 20 "Here is a simple string to test convert_uuencode/decode", 36 $encode = convert_uuencode($string);
|
/PHP-7.2/ext/standard/ |
H A D | php_uuencode.h | 25 PHP_FUNCTION(convert_uuencode);
|
H A D | uuencode.c | 203 PHP_FUNCTION(convert_uuencode) in PHP_FUNCTION() argument
|
H A D | basic_functions.c | 2913 PHP_FE(convert_uuencode, arginfo_convert_uuencode)
|
Completed in 29 milliseconds