案例:php案例     状态:不可编辑再运行    进入竖版
 运行结果 
x
 
1
2
3
4
<!DOCTYPE html>
5
<html>
6
<body>
7
8
<?php
9
$str = "Hello world!";
10
// 对字符串进行编码
11
$encodeString = convert_uuencode($str);
12
echo $encodeString . "<br>";
13
14
// 对字符串进行解码
15
$decodeString = convert_uudecode($encodeString);
16
echo $decodeString;
17
?>
18
19
</body>
20
</html>
21
22
23