Thursday, 25 September 2014

convert_uudecode in PHP

The PHP convert_uudecode() function is utilized  to Decode a uuencoded string.
This function is mostly utilized together with the convert_uudecode() function.

Syntax:

convert_uudecode(string)
string : Required. The input uuencoded string.

Example:

<?php 
$str = '-1V]O9"!-;W)N:6YG(0`` ` ';
echo convert_uudecode($str);
?>

The output  will be:

Good Morning!

0 comments:

Post a Comment