WEB开发网
开发学院WEB开发PHP 如何去掉文章里的 html 语法 阅读

如何去掉文章里的 html 语法

 2001-08-22 11:46:44 来源:WEB开发网   
核心提示:<? $a="<font color=red>这是一个带HTML标识的字串</font>"; $a=strip_tags($a); PRint $a; ?> 2<? $a="<font color=red>这是一个带HTML标识的字串&
<?
$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;
?>

Tags:如何 去掉 文章

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接