<?php //定义一个HTML代码字符串 $str=<<<HTM <a href=#><b><i>到一个网址的链接<></i></b></a> HTM; $str=htmlspecialchars($str); //将字符串中指定的字符进行转换 echo $str; ?>