php中convert_uuencode()与convert_uuencode函数用法实例
程序员文章站
2024-01-02 12:29:52
...
这篇文章主要介绍了php中convert_uuencode()与convert_uuencode函数用法,以实例形式了convert_uuencode()与convert_uuencode进行编码与解码的方法,是非常实用的
本文实例讲述了php中convert_uuencode()与convert_uuencode函数用法。分享给大家供大家参考。具体分析如下:
onvert_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; //输出原始字符串
$result=convert_uuencode($str); //执行uuencode操作
echo $result;
注释:本函数把所有字符串(包括二进制的)转换为可打印的字符串,确保其网络传输的安全,uuencode 的字符串比原字符串增大大约 35%.
希望本文所述对大家的PHP程序设计有所帮助。
推荐阅读
-
php中convert_uuencode()与convert_uuencode函数用法实例
-
php中substr()函数参数说明及用法实例_PHP
-
PHP中header函数的用法及其注意事项详解_php实例
-
php中数字、字符与对象判断函数用法实例_PHP
-
ThinkPHP中__initialize()和类的构造函数__construct()用法分析_php实例
-
php中ob_get_length缓冲函数用法实例详解
-
php中crypt()函数实例用法总结
-
php中sprintf与printf函数用法区别解析
-
php中isset与empty函数的困惑与用法分析
-
php中file_get_contents()函数用法实例