Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

PHP convert_uudecode() Function

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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 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!
My Personal Notes arrow_drop_up
Last Updated : 18 Dec, 2018
Like Article
Save Article
Similar Reads