<br>$a="<font color="red">这是一个带HTML标识的字串</font>"; <br>$a=strip_tags($a); <br>print $a; <br>?> <br><br><br>2<br> <br>$a="<font color="red">这是一个带HTML标识的字串</font>"; <br>ereg_replace("^<.>$", "", $a); <br>print $a; <br>?> <br><br><br>3 保留原有内容<br><br> <br>$a="<font color="red">这是一个带HTML标识的字串</font>"; <br>ereg_replace("ereg_replace(">", ">", $a); <br>print $a; <br>?> <br> </.>