convert_uuencode

(PHP 5, PHP 7)

convert_uuencodeUuencode a string

Descrierea

convert_uuencode ( string $string ) : 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.

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

Parametri

string

The data to be encoded.

Valorile întoarse

Returns the uuencoded data.

Istoricul schimbărilor

Versiune Descriere
8.0.0 Prior to this version, trying to convert an empty string returned false for no particular reason.

Exemple

Example #1 convert_uuencode() example

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

echo 
convert_uuencode($some_string);
?>

Exemplul de mai sus va afișa:

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

A se vedea și