PHP convert_uudecode() Function


The convert_uudecode() function decodes a uuencoded string.

Syntax
convert_uudecode(string)
Parameters
  • string - (Required) The uuencoded data string that you want to decode.
Example
<?php
echo "Decode Value: ". convert_uudecode(",2&5L;&\@=V]R;&0A ");
?>

Output

Decode Value: Hello world!

Prev Next