超越PHP PHP动态 | 经典文章 | CLASS | 相关下载 | 常见问题 | FORUM | WIKI | 在线手册
Site search:    
<convert_uudecodecount_chars>
Last updated: Fri, 22 Jun 2007

convert_uuencode

(PHP 5)

convert_uuencode --  Uuencode a string

Description

string convert_uuencode ( string data)

convert_uuencode() encodes a string using the uuencode algorithm.

Uuencode translates all strings (including binary's ones) into printable characters, making them safe for network transmissions. Uuencoded data is about 35% larger than the original.

例子 1. convert_uuencode() example

<?php
$some_string
= "test\ntext text\r\n";

echo
convert_uuencode($some_string);
?>

See also convert_uudecode() and base64_encode().




add a note add a note User Contributed Notes
convert_uuencode
Craig at frostycoolslug dot com
09-Aug-2004 10:15
This function can be useful if you wish to store files in a MySQL database, it will save any problems with obscure binary data breaking the queries.

just remember to convery-uudecode before you try to use the data again.

(A common example of something that uses this system, would be email attachments)

<convert_uudecodecount_chars>
 Last updated: Fri, 22 Jun 2007
view source | feedback | send page | sitemap | aboutus   
Copyright ® 2002-2003 PHPE.NET. All rights reserved
Last updated:2002-11-22