DevelopPHP
home Forum gear home

Libraries book

HTML Library CSS Library JavaScript Library PHP Library

Videosbook

PHP and MySQL JavaScript HTML and CSS Vector and 3D Flash Actionscript Android Dev Miscellaneous

Resourcesbook

Website Hosting
convert_uudecode ( ) - Decode a previously uuencoded string   Share / Like
The convert_uudecode() string function will decode a uuencoded string back to normal again. This means it can be used as a 2-way encryption method for low level security measures.

First we'll have to encode a string so you can see it get decoded.

Learn HTML
<?php
$myString 
"My name is Adam and I like to party.";
// Encode the string
$encodedString convert_uuencode($myString);
echo 
$encodedString;
echo 
"<br /><br />";
// Decode the string back to normal
$decodedString convert_uudecode($encodedString);
echo 
$decodedString;
?>

Develop PHP browser display window
D37D@;F%M92!I
My name is Adam and I like to party.

Home   •   Terms of Use   •   Developer Forums   •   T-Shirts   •   RSS   •   Classroom Chalkboard   •   Donate   •   Top ↑
Popular In PHP / MySQL E-Commerce Store Production
Social Network Website Building
Image Upload / Photo Processing
CMS Software Programming
Mass Email Systems
Magic XML Data
Search Programming
Popular In JavaScript JSON Programming
Ajax Programming
Animating Elements
WYSIWYG Programming
Date/Time Programming
DOM Scripting
Object Reference
Popular In HTML Canvas Element
New Form Elements
Audio Element
Video Element
Drag and Drop
Event Handling
Element Grouping
Popular In CSS Custom Font Embedding
Dynamic Fit Backgrounds
Theatre Mode
Box Overlays
CSS Level 1 Properties
CSS Level 2 Properties
CSS Level 3 Properties
©2013 DevelopPHP   |   Navigate to related domains HTML5