带有html标签的PHP preg_match

时间:2012-10-06 08:49:30

标签: php string preg-match

我正在尝试在模式中提取一些字符串。

字符串是

<br /><br /><br />Text i want here
<br /></div>

我想要:“我想要的文字”

我的尝试是

preg_match('!<br /><br /><br />(.*?)<br /></div>!xi', $homepage, $matches);

但失败了。

**我使用x因为它们之间可能有一些空格或\ n。

<br />
<br />
<br />Text u want here
<br /></div>

1 个答案:

答案 0 :(得分:1)

使用strip_tags("<br /><br /><br />Text i want here<br /></div>")

strip_tags将从字符串中删除所有HTML和PHP标记。