PHP convert_uudecode Function
What is convert_uudecode Function?
Explanation
In PHP, this function is used to decode a uuencoded string.
Syntax:
convert_uudecode(string)
In the above syntax "string" specified as uuencoded input are decoded.
Example :
<?php
echo convert_uudecode(JA)
?>
Result :
Hello
In the above example the uuencoded string "JA" is decoded to "Hello".