convert_uudecode
Decode a uuencoded string
Description
string convert_uudecode
( string $data
)
Parameters
-
data
-
The uuencoded data.
Return Values
Returns the decoded data as a string or FALSE
on failure.
Examples
Example #1 convert_uudecode example
<?php
/* Can you imagine what this will print? :) */
echo convert_uudecode("+22!L;W9E(%!(4\"$`\n`");
?>