我正在使用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>
我该怎么办?
答案 0 :(得分:0)
使用replace string将div替换为空格。
str_replace(find,replace,from);
因此,您可以使用<div> </div>
查找并将其替换为代码中的""
。