如何将标签<div>添加到第二个标签<p>和最后一个标签</p>之后?(PHP)
例如:
<p>text... short text - first</p>
<p>text, text, text, text... - Second</p>
<p>text, text, text, text... - Third</p>
<p>text, text, text, text... - Fourth</p>
.... <-- some texts
到:
<p>text... short text - first</p>
<div class="long-text"> <-- add tag '<div ...>'
<p>text, text, text, text... - Second</p>
<p>text, text, text, text... - Third</p>
<p>text, text, text, text... - Fourth</p>
.... <-- some texts
</div> <-- close tag '</div>'