Php/docs/function.convert-uudecode

From Get docs

convert_uudecode

(PHP 5, PHP 7)

convert_uudecodeDecode a uuencoded string


Description

convert_uudecode ( string $string ) : string|false

convert_uudecode() decodes a uuencoded string.

Note:

convert_uudecode() neither accepts the begin nor the end line, which are part of uuencoded files.

Parameters

string
The uuencoded data.


Return Values

Returns the decoded data as a string or FALSE on failure.


Examples

Example #1 convert_uudecode() example

<?phpecho convert_uudecode("+22!L;W9E(%!(4\"$`\n`");?>

The above example will output:


I love PHP!

See Also