使用preg_replace删除某些内容

时间:2016-05-21 13:27:48

标签: php preg-replace

我的字符串:

Hi there!<div><br></div><img src="../images/Character Green.png"><div><br></div><div>Yes hello</div>

我只想要显示的字样 - 在这种情况下,它会是“你好!”和“是你好

我想我需要使用preg_replace

1 个答案:

答案 0 :(得分:0)

在这种情况下,您可以使用strip_tags函数

echo strip_tags($s); // Hi there!Yes hello

或者通过<br>标记

划分单词有点复杂
$res = array_filter(explode('<br>', strip_tags($s, '<br>')));
echo implode(' ', $res); // Hi there! Yes hello