update : 2015.11.03
php.shukuma.com

검색:
 
 
Uuencode a string

convert_uuencode

(PHP 5)

convert_uuencodeUuencode a string

설명

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.

인수

data

The data to be encoded.

반환값

Returns the uuencoded data 실패 시 FALSE를 반환합니다.

예제

Example #1 convert_uuencode() example

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

echo 
convert_uuencode($some_string);
?>

참고