我在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"
答案 0 :(得分:1)
您可以将preg_replace与正则表达式一起使用。像这样:
$text = preg_replace("/<img (.*?)>/i", "", $text);
$text = preg_replace("/<a (.*?)>(.*?)</a>/i", "$2", $text);