密码学脚本记录
看题目中由 encode 可以猜到是一种编码方式 来源 / 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <?php /* convert_uudecode() 函数对 uuencode 编码的字符串进行解码。 该函数常与 convert_uuencode() 函数一起使用。 */ $str = "Hello world!"; // 对字符串进行编码 $encodeString = convert_uuencode($str); echo $encodeString . "<br>"; // 对字符串进行解码(注意转义字符) $decodeString = convert_uudecode($encodeString); echo $decodeString; ?> 去这里运行试试>>>PHP在线运行
Read more