您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1494 复制当前网址

convert_uuencode



PHP convert_uuencode() 函数

定义和用法

convert_uuencode() 函数使用 uuencode 算法对字符串进行编码。


语法

convert_uuencode(string)

参数描述
string必需。规定进行 uuencode 的字符串。


提示和注释

注释:本函数把所有字符串(包括二进制的)转换为可打印的字符串,确保其网络传输的安全。

注释:uuencode 的字符串比原字符串增大大约 35%。


例子

在本例中,我们将使用 convert_uuencode() 对字符串进行编码:

<?php
$str = "Hello world!";
echo convert_uuencode($str);
?>

输出:

,2&5L;&\@=V]R;&0A `


文章来源:https://liqingbo.com/blog-806.html

上一篇:count_chars

下一篇:convert_uudecode

评论