php convert_uuencode() 与 convert_uuencode 函数
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-19 17:07:39 浏览: 评论:0
convert_uudecode() 函数对 uuencode 编码的字符串进行解码.
语法:convert_uudecode(string),代码如下:
- $str=",2&5l;&/@=v]r;&0a `"; //定义uuencode编码字符串
- $result=convert_uudecode($str); //解码
- echo $result; //输出结果数据,hello world!
convert_uuencode() 函数使用 uuencode 算法对字符串进行编码.
语法:convert_uuencode(string),代码如下:
- $str="hello world"; //定义字符串
- echo $str; //输出原始字符串
- //开源代码phpfensi.com
- $result=convert_uuencode($str); //执行uuencode操作
- echo $result;
注释:本函数把所有字符串(包括二进制的)转换为可打印的字符串,确保其网络传输的安全,uuencode 的字符串比原字符串增大大约 35%.
Tags: convert_uuencode convert_uuencode函数
- 上一篇:php数组查找关键函数
- 下一篇:php addslashes sql防注入函数
相关文章
- ·PHP如何使用convert_uuencode()函数对字符串进行编码?(2020-03-02)
- ·php中convert_uuencode()与convert_uuencode函数用法实例(2021-04-28)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)