题目:转换以下ASCII码为对应字符并输出他们。73, 32, 99, 97, 110, 32, 100, 111, 32, 105, 116 , 33 注意,当数值少于128,原样输出。 以下代码参考了网上一个PHP实现ASCII码与字符串转换的写法。(https://www.jb51.net/article/112523.htm ) <?php class ascii{ function decode($str,$prefix="&#"){ $str = str_replace($prefix,"",$str); $a = explod...