convert_uudecode() function in PHP


The convert_uudecode() function is used to decode a encoded string.

Syntax

convert_uudecode(data)

Parameters

  • data − The uudecode data

Return

The convert_uudecode() function returns the decoded data as a string or else false on failure.

Example

The following is an example −

Live Demo

<?php
   echo convert_uudecode("+22!L;W9E(%!(4"$`
`"); ?>

Output

I love PHP!

Updated on: 30-Jul-2019

38 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements