English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Basic PHP Tutorial

Advanced PHP Tutorial

PHP & MySQL

PHP Reference Manual

PHP convert_uudecode() function usage and example

PHP String manual of string functions

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

Syntax

string convert_uudecode ( string $data )

Definition and usage

Used to decode uuencoded strings

Return value

It returns the decoded data as a string, otherwise returns false

Parameter

Serial numberParameters and descriptions
1

data

uuencode encoded data.

Online example

Try the following example to decode the uuencode encoded data:

<?php
   //Use the convert_uudecode() function to decode the uuencode encoded data
   echo convert_uudecode("+22!L;W9E(%!(4\"$`\n`");
?>
Test and see‹/›

Output result

I love PHP!

PHP String manual of string functions