タグ< div >を 2 番目のタグ< 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>'