PHP查找并替换某些字符串模式

时间:2014-09-04 15:48:08

标签: php preg-replace

我在php $ string中有一段html代码。问题是,我需要删除所有" img"和" a href"来自它的标签。我想我应该使用preg_replace函数,但我的模式应该如何?

我想替换:

"<img some params and address>" with ""

"<a href="some random address with unknown length">my text</a>" with "my text"

1 个答案:

答案 0 :(得分:1)

您可以将preg_replace与正则表达式一起使用。像这样:

$text = preg_replace("/<img (.*?)>/i", "", $text);
$text = preg_replace("/<a (.*?)>(.*?)</a>/i", "$2", $text);