我正在使用 php Querypath,我正在尝试从 html 字符串中删除所有出现在 html 顶部和底部的空标记。例如:
<div> </div>
<div> </div>
<div>I want remove empty div tag on top and bottom</div>
<div> </div>
<div>other content</div>
<div> </div>
<div> </div>
使用 php querypath 我想更改为:
<div>I want remove empty div tag on top and bottom</div>
<div> </div>
<div>other content</div>
我能怎么做?