PHP convert_uudecode Function


PHP convert_uudecode Function : It is used to decode a string using the uudecode algorithm.


PHP convert_uudecode Function Syntax


convert_uudecode(string)

String : Input String
Output : Decoded String.

PHP convert_uudecode Function

$string = "-2&5L;&\@5V]R;&0@(0`` `";
$str = convert_uudecode($string);
echo $str;

Try it »

Output of the above example will be :

PHP convert_uudecode Function

PHP convert_uudecode() Function


Advertisements

Add Comment

📖 Read More