PHP
·
发表于 5年以前
·
阅读量:8296
<?
$a="这是一个带HTML标识的字串";
$a=strip_tags($a);
print $a;
?>
2
<?
$a="这是一个带HTML标识的字串";
ereg_replace("^<.+>$", "", $a);
print $a;
?>
3 保留原有内容
<?
$a="这是一个带HTML标识的字串";
ereg_replace("<", "<", $a);
ereg_replace(">", ">", $a);
print $a;
?>