当前位置:主页 > 软件编程 > PHP代码 >

如何去掉文章里的 html 语法

时间:2022-09-08 09:01:04 | 栏目:PHP代码 | 点击:

<?
$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;
?>

您可能感兴趣的文章:

相关文章