Php替换未知单词

时间:2017-05-02 12:03:48

标签: php replace

我有那个文字:

$text = 'Some text... <a href="http://foo.bar/***">Read More</a>';

我需要删除此内容:<a href="http://foo.bar/***">Read More</a>***是未知的词。

2 个答案:

答案 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);
?>