欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

如何去掉文章里的 html 语法

程序员文章站 2022-05-21 20:21:00
这是一个带html标识的字串"; $a=strip_tags(...
<?
$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;
?>