Computer >> Computer tutorials >  >> Programming >> PHP

convert_uudecode() function in PHP


The convert_uudecode() function is used to decode a encoded string.

Syntax

convert_uudecode(data)

Parameters

  • data − The uudecode data

Return

The convert_uudecode() function returns the decoded data as a string or else false on failure.

Example

The following is an example −

<?php
   echo convert_uudecode("+22!L;W9E(%!(4\"$`\n`");
?>

Output

I love PHP!