如何在php中将多个<br/>转换为两个<br/>标签

时间:2015-04-28 08:02:49

标签: php preg-replace

我想将conurrence br标记删除到最多两个标记。标签是不是这里是类似问题How to convert multiple <br/> tag to a single <br/> tag in php但不是我的问题。

如何用PHP做到这一点? 这是我的代码,但它不起作用?

$s = "line1<br><br><br><br>line2";
preg_replace("/(<br>\s*){2,}/", "<br><br>", $s);

这是我得到的结果

line1<br><br><br><br>line2

我的期望

line1<br><br>line2

0 个答案:

没有答案