如何去掉文章里的 html 语法
作者:bea
<? $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
<?
$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;
?>
有用 |
无用
$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系统流量分析的程序
- PHP的栏目导航程序
- php的计数器程序
- PHP的开合式多级菜单程序
- PHP如何透过ODBC来存取数据库
- 在线短消息收发的程序,不用数据库
- PHP网站提速三大“软”招
- 用PHP发电子邮件
- 基于qmail的完整WEBMAIL解决方案安装详解
- 一段php加密解密的代码
- PHP开发文件系统实例讲解
- 用PHP读取IMAP邮件
- php+oracle 分页类
- 使用无限生命期Session的方法
- 图象函数中的中文显示
- 使用php+xslt在windows平台上
- 配置PHP使之能同时支持GIF和JPEG
- PHP输出控制功能在简繁体转换中的应用
- PHP 增加了对 .ZIP 文件的读取功能