我的字符串:
Hi there!<div><br></div><img src="../images/Character Green.png"><div><br></div><div>Yes hello</div>
我只想要显示的字样 - 在这种情况下,它会是“你好!”和“是你好”
我想我需要使用preg_replace
答案 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