No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

convert_uuencode

(PHP 5, PHP 7)

convert_uuencodeUuencode a string

Description

convert_uuencode ( string $data ) : string

convert_uuencode() encodes a string using the uuencode algorithm.

Uuencode translates all strings (including binary data) into printable characters, making them safe for network transmissions. Uuencoded data is about 35% larger than the original.

Note: convert_uuencode() neither produces the begin nor the end line, which are part of uuencoded files.

PHP: convert_uuencode - Manual Home of Manuel PHP  Contents Haut

Parameters

data

The data to be encoded.

PHP: convert_uuencode - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns the uuencoded data or FALSE on failure.

PHP: convert_uuencode - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 convert_uuencode() example

<?php
$some_string 
"test\ntext text\r\n";

echo 
convert_uuencode($some_string);
?>

The above example will output:

0=&5S=`IT97AT('1E>'0-"@``
`

PHP: convert_uuencode - Manual Home of Manuel PHP  Contents Haut

See Also

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph