Home » PHP convert_uuencode() function

PHP convert_uuencode() function

by Online Tutorials Library

PHP convert_uuencode() Function

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:

Parameter Description Required/Optional
String The string to uuencode Required

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

You may also like