Saturday, November 22, 2025
HomeLanguagesPHP convert_uudecode() Function

PHP convert_uudecode() Function

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 = "neveropen for neveropen!"; 
  
// 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``
`

neveropen for neveropen!
RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS