PHP convert_uudecode() Function

PHP convert_uudecode() function is predefined string PHP function , which is used to decode a uuencoded string. It returns the decoded data as a string.

Syntax:

ParameterDescriptionRequired/Optional
stringThe uuencoded string to decodeRequired

Example 1

Output:

Your Decode string is :*:F%V851P;VEN=``` ` 
By using 'convert_uudecode()' function your encoded string is : javaTpoint

Example 2

Output:

Your Encoded string is :javatpoint
By using 'convert_uudecode()' function your decoded string is : *:F%V871P;VEN=``` ` 

Example 3

Output:

Your Encoded string is :+22!L;W9E(%!(4"$` `
By using 'convert_uudecode()' function your encoded string is : I love PHP!

Your Decoded string is :I love PHP!
By using 'convert_uuencode()' function your encoded string is : +22!L;W9E(%!(4"$` ` 

Next TopicPHP String




Latest Courses