``` --- ## Definition and"> ``` --- ## Definition and" />
Easy Tutorial
❮ Func String Vfprintf Func Curl_Multi_Info_Read ❯

PHP convert_uudecode() Function

PHP String Reference Manual

Example

Decoding a uuencoded string:

<?php
$str = ",2&5L;&@=V]R;&0A `";
echo convert_uudecode($str);
?>

Definition and Usage

The convert_uudecode() function decodes a uuencoded string.

This function is typically used in conjunction with the convert_uuencode() function.


Syntax

Parameter Description
string Required. Specifies the uuencoded string to decode.

Technical Details

Return Value: Returns the decoded data as a string.
PHP Version: 5+
--- ---

More Examples

Example 1

Encoding a string and then decoding it:

❮ Func String Vfprintf Func Curl_Multi_Info_Read ❯