如何去掉文章里的 html 语法
程序员文章站
2022-05-23 18:54:13
...
$a="这是一个带HTML标识的字串";
$a=strip_tags($a);
PRint $a;
?>
2
$a="这是一个带HTML标识的字串";
ereg_replace("^<.>$", "", $a);
print $a;
?>
3 保留原有内容
$a="这是一个带HTML标识的字串";
ereg_replace(" ereg_replace(">", ">", $a);
print $a;
?>
上一篇: PHP初记(5) - 设置页面编码
下一篇: PHP遍历关联数组的几种方法_PHP教程