PHP convert_uuencode() Function


The convert_uuencode() function is used to uuencode a string.

Syntax
convert_uuencode(string)
Parameters
  • string - (Required) The string that you want to uuencode.
Example
<?php
echo "Encode Value: ". convert_uuencode("Hello world");
?>

Output

Encode Value: +2&5L;&\@=V]R;&0` `

Prev Next