최신 웹 개발 튜토리얼
 

PHP convert_uudecode() Function

<PHP 문자열 참조

uuencode 된 문자열을 디코딩 :

<?php
$str = ",2&5L;&\@=V]R;&0A `";
echo convert_uudecode($str);
?>
»실행 예

정의 및 사용

convert_uudecode() 함수는 uuencode 된 문자열을 디코딩합니다.

이 기능은 종종 함께 사용 convert_uuencode() 함수.


통사론

convert_uudecode( string )

매개 변수 DDescription
필요합니다. uuencode 된 문자열을 디코딩

기술적 세부 사항

반환 값 : 문자열로 디코딩 된 데이터를 반환
PHP 버전 : 5+

더 예

예 1

를 디코딩 한 후 문자열을 인코딩 및 :

<?php
$str = "Hello world!";
// Encode the string
$encodeString = convert_uuencode($str);
echo $encodeString . "<br>";

// Decode the string
$decodeString = convert_uudecode($encodeString);
echo $decodeString;
?>
»실행 예

<PHP 문자열 참조