如何去掉文章里的 html 语法
程序员文章站
2022-05-26 16:52:34
...
$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;
?>
上一篇: break、continue 和return 在程序中的重要性
下一篇: mysql-存储过程