2这是一个带HTML标识的字串";ereg_replace("^$", 无争山庄资源网更新日期:2024/11/18" />
网络编程 
首页 > 网络编程 > 浏览文章

如何去掉文章里的 html 语法

(编辑:jimmy 日期: 2024/11/18 浏览:3 次 )
<?
$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;
?>
上一篇:PHP 增加了对 .ZIP 文件的读取功能
下一篇:如何分别全角和半角以避免乱码