PHP convert_uudecode() Function

Last Updated : 18 Dec, 2018
Comments
Improve
Suggest changes
Like Article
Like
Report
The convert_uudecode() is a built in function in PHP. This function decode a uuencoded string encoded using convert_uuencode() function. The uudecode() functions makes string into printable form. Syntax:
 string convert_uudecode(string)
Parameters: The uuencoded string which will be decoded. Return Type: It returns a decoded string. Example:
 Input : /22!L;W9E(&UY(&EN9&EA`
 Output : I love my india  
Below program shows the working of convert_uudecode() function: Example php
<?php 

// PHP program illustrate the 
// convert_uudecode() function 

// Input String 
$str = "geeks for geeks!"; 

// Encoding the string 
$encodeString = convert_uuencode($str); 

// printing encoded string 
echo $encodeString . "\n"; 

// Decode the string 
$decodeString = convert_uudecode($encodeString); 

// Printing string in decoded format
echo $decodeString; 

?> 
Output:
09V5E:W,@9F]R(&=E96MS(0``
`

geeks for geeks!

Next Article

Similar Reads