PHP convert_uuencode() 函数
PHP 教程
· 2019-01-29 11:42:18
实例
编码字符串:
<?php
$str = "Hello world!";
echo convert_uuencode($str);
?>
$str = "Hello world!";
echo convert_uuencode($str);
?>
定义和用法
convert_uuencode() 函数使用 uuencode 算法对字符串进行编码。
注释:该函数把所有字符串(包括二进制)编码为可打印的字符,确保其数据库存储及网络传输的安全。请记住,在重新使用数据前,请使用 convert_uudecode() 函数。
注释:uuencoded 数据比原数据大约增大 35%。
语法
convert_uuencode(string)
参数 | 描述 |
---|---|
string | 必需。规定要进行 uuencode 编码的字符串。 |
技术细节
返回值: | 返回 uuencoded 编码的数据。 |
---|---|
PHP 版本: | 5+ |
更多实例
实例 1
编码字符串,然后对它进行解码:
<?php
$str = "Hello world!";
// Encode the string
$encodeString = convert_uuencode($str);
echo $encodeString . "<br>";
// Decode the string
$decodeString = convert_uudecode($encodeString);
echo $decodeString;
?>
$str = "Hello world!";
// Encode the string
$encodeString = convert_uuencode($str);
echo $encodeString . "<br>";
// Decode the string
$decodeString = convert_uudecode($encodeString);
echo $decodeString;
?>
点击查看所有 PHP 教程 文章: https://www.codercto.com/courses/l/5.html
世界是平的(3.0版)
[美] 托马斯·弗里德曼 / 何帆、肖莹莹、郝正非 / 湖南科学技术出版社 / 2008-9 / 58.00元
世界变得平坦,是不是迫使我们跑得更快才能拥有一席之地? 在《世界是平的》中,托马斯·弗里德曼描述了当代世界发生的重大变化。科技和通信领域如闪电般迅速的进步,使全世界的人们可以空前地彼此接近——在印度和中国创造爆炸式增长的财富;挑战我们中的一些人,比他们更快占领地盘。3.0版新增两章,更新了报告和注释方面的内容,这些内容均采自作者考察世界各地特别是整个美国中心地带的见闻,在美国本土,世界的平坦......一起来看看 《世界是平的(3.0版)》 这本书的介绍吧!