convert_uudecode

(PHP 5, PHP 7)

convert_uudecodeuuencode された文字列をデコードする

説明

convert_uudecode ( string $data ) : string

convert_uudecode() は、uuencode された文字列をデコードします。

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

パラメータ

data

uuencode されたデータ。

返り値

デコードしたデータを文字列で返します。失敗した場合に FALSE を返します。

例1 convert_uudecode() の例

<?php
echo convert_uudecode("+22!L;W9E(%!(4\"$`\n`");
?>

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

I love PHP!

参考