|
|
PHP convert_uuencode Function
|
Tutorials » Php »
|
Topic |
What is convert_uuencode Function?
|
|
Explanation |
|
In PHP,this function is used to uuencode a string.Uuencode is an algorithm that
converts all strings, binary's ones into printable characters, making them safe for network transmissions.
Uuencoded data is about 35% larger than the original data.
Syntax:
convert_uuencode(string)
In the above syntax "string" specified as input are uuencoded.
Example:
<?php
echo convert_uuencode(hello)
?>
Result:
JA
In the above example, "hello" is uuencoded to the string "JA".
|
|
A Note |
Learn PHP programming language tutorial with simple and neat example. Hope you enjoy this free tutorial.
Do give us your valuable feedback and suggestions on this online tutorial. This is a Copyright Content.
|
|
|
|