我有那个文字:
$text = 'Some text... <a href="http://foo.bar/***">Read More</a>';
我需要删除此内容:<a href="http://foo.bar/***">Read More</a>
。
***
是未知的词。
答案 0 :(得分:0)
您可以轻松尝试此功能
<?php
str_replace(
"The Unkown phrase you want to remove " ,
" The New Phrase eg.Space if you want to " ,
$yourText
);
?>
答案 1 :(得分:0)
只需使用strip_tags函数
<?php
$text = 'Some text... <a href="http://foo.bar/***">Read More</a>';
$text =strip_tags($text);
?>