convert_uuencode

(PHP 5, PHP 7)

convert_uuencode文字列を uuencode する

説明

convert_uuencode ( string $data ) : string

convert_uuencode() は、uuencode アルゴリズムを使用して文字列をエンコードします。

uuencode はすべての文字(バイナリを含む)を表示可能な文字に変換し、 ネットワーク上での転送を可能にします。uuencode されたデータは、 元のデータより約 35% 大きくなります。

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

パラメータ

data

エンコードしたいデータ。

返り値

uuencode されたデータを返します。失敗した場合に FALSE を返します。

例1 convert_uuencode() の例

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

echo 
convert_uuencode($some_string);
?>

上の例の出力は以下となります。

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

参考