PHP convert_uuencode() Function
The convert_uuencode() function encodes a string using the uuencode algorithm.
Note: Uuencoded data is about 35% larger than the original.
Example
<?php
$str = "Hello world!";
echo convert_uuencode($str);
?>
Output
,2&5L;&\@=V]R;&0A `
Leave a Reply