How to use convert uudecode in PHP

In this article, I will explain how the convert_uudecode() function can be used in PHP.
  • 2603

convert_uudecode() function in PHP

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

Syntax

convert_uudecode(string)

Parameter

  • string string is required parameter. it is uuencoded string to decode.

Example

The following example show to how the convert_uudecode() function can be used in PHP.

<html>

<body>

<h3 style="color: red;">convert_uudecode() function example in PHP</h3>

   <?php

    $str = ",2&5L;&\@=V]R;&0A `";

    echo "uuencode data of C-sharpcorner is : <br/>". convert_uudecode($str);

    ?>

</body>

</html>

 

Output

convertuudecodephp.jpg
You may also want to read these related articles here
 
Ask Your Question 
 
Got a programming related question? You may want to post your question here
 

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.