convert_uudecode

(PHP 5)

convert_uudecodeDecode a uuencoded string

說明

string convert_uudecode ( string $data )

convert_uudecode() decodes a uuencoded string.

參數

data

The uuencoded data.

回傳值

Returns the decoded data as a string 或者在失敗時回傳 FALSE.

範例

Example #1 convert_uudecode() example

<?php
/* Can you imagine what this will print? :) */
echo convert_uudecode("+22!L;W9E(%!(4\"$`\n`");
?>

參見

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top