update : 2015.11.03
php.shukuma.com

검색:
 
 
Decode a uuencoded string

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`");
?>

참고