PHP convert_uuencode Function
What is convert_uuencode Function?
Explanation
In PHP,this function is used to uuencode a string.Uuencode is an algorithm that converts all strings, binary's ones into printable characters, making them safe for network transmissions. Uuencoded data is about 35% larger than the original data.
Syntax:
convert_uuencode(string)
In the above syntax "string" specified as input are uuencoded.
Example :
<?php
echo convert_uuencode(hello)
?>
Result :
JA
In the above example, "hello" is uuencoded to the string "JA".