问问题
98 次
1 回答
3
您可以使用strip_tags()
.
strip_tags('<h1><a href="http://www.google.com/">Google</a>& Yahoo</h1>', '<h1>');
结果将是<h1>Google & Yahoo</h1>
。如果你真的想要结果<h1>& Yahoo</h1>
,你可以这样做:
preg_replace("@<a[^>]*?>.*?</a>@si", '', '<h1><a href="http://www.google.com/">Google</a>& Yahoo</h1>');
于 2012-10-07T16:16:34.167 回答