convert_uudecode
(PHP 5, PHP 7, PHP 8)
convert_uudecode — Decode a uuencoded string
Description
$string): string|falseconvert_uudecode() decodes a uuencoded string.
Note: convert_uudecode() neither accepts the
beginnor theendline, 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
<?php
echo convert_uudecode("+22!L;W9E(%!(4\"$`\n`");
?>
The above example will output:
I love PHP!

