PHP convert_uuencode() Function

4 Sept 2024 | 1 min read

PHP convert_uuencode() function is predefined string function, which is used to encodes a string using the uuencode algorithm. It returns the uuencoded data.

Note: By using "Uuencoded function" the uuencoded data is 35% larger than the original.

Syntax:

ParameterDescriptionRequired/Optional
StringThe string to uuencodeRequired

Example 1

Output:

Your Decoded string is :I love My India By using 'convert_uuencode()' function your encoded string is : /22!L;W9E($UY($EN9&EA ` 

Example 2

Output:

Your Decoded string is :I love PHP! By using 'convert_uuencode()' function your encoded string is : +22!L;W9E(%!(4"$` ` Your Encoded string is :+22!L;W9E(%!(4"$` ` By using 'convert_uudecode()' function your encoded string is : I love PHP! 

Next TopicPHP String