PHP Convert_uudecode () and Convert_uuencode functions _php Tutorial

Source: Internet
Author: User
The Convert_uudecode () function decodes a uuencode encoded string.

Grammar
Convert_uudecode (String)
*/
$str = ", 2&5l;&/@=v]r;&0a '"; Defining UUENCODE encoded strings
$result =convert_uudecode ($STR); Decoding
echo $result; Output result data, Hello world!

/*

The Convert_uuencode () function encodes a string using the uuencode algorithm.

Grammar
Convert_uuencode (String)
*/

$str = "Hello World"; Defining strings
Echo $str; Output RAW String


$result =convert_uuencode ($STR); Performing Uuencode Operations
echo $result;
/*

Note: This function converts all strings (including binary) to printable strings, ensuring the security of their network transmissions.

Note: The string of uuencode is approximately 35% larger than the original string.



http://www.bkjia.com/PHPjc/445381.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/445381. The Htmltecharticleconvert_uudecode () function decodes a uuencode encoded string. Syntax Convert_uudecode (String) */$str =,25l;/@=v]r;0a ';//define UUENCODE encoded string $result =convert_uud ...

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.