首页 > 学院 > 开发设计 > 正文

如何去掉文章里的 html 语法 

2019-11-18 20:35:35
字体:
来源:转载
供稿:网友
<?
$a="<font color=red>这是一个带HTML标识的字串</font>";
$a=strip_tags($a);
PRint $a;
?>


2
<?
$a="<font color=red>这是一个带HTML标识的字串</font>";
ereg_replace("^<.+>$", "", $a);
print $a;
?>


3 保留原有内容

<?
$a="<font color=red>这是一个带HTML标识的字串</font>";
ereg_replace("<", "<", $a);
ereg_replace(">", ">", $a);
print $a;
?>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表