137
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:
Parameter | Description | Required/Optional |
---|---|---|
string | The uuencoded string to decode | Required |
Example 1
Output:
Your Decode string is :*:F%V851P;VEN=``` ` By using 'convert_uudecode()' function your encoded string is : TutorAspire
Example 2
Output:
Your Encoded string is :tutoraspire 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