Warning: file_put_contents(): Only -1 of 56 bytes written, possibly out of free disk space in /var/www/html/index.php on line 3

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 23

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 24

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 25
convert_uuencode PodrÄ™cznik PHP Poprzedni NastÄ™pny (PHP 5) convert_uuencode --  Uuencode a string Description string ( data ) convert_uuencode() encodes using the uuencode algorith...
Forum und email
convert_uuencode

convert_uuencode

(PHP 5)

convert_uuencode --  Uuencode a string

Description

string convert_uuencode ( string data )

convert_uuencode() encodes a string using the uuencode algorithm.

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

Przykład 1. convert_uuencode() example

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

echo
convert_uuencode($some_string);
?>

See also convert_uudecode() and base64_encode().