1

我正在使用 php Querypath,我正在尝试从 html 字符串中删除所有出现在 html 顶部和底部的空标记。例如:

      <div>&nbsp;</div>
      <div>&nbsp;</div>
      <div>I want remove empty div tag on top and bottom</div>
      <div>&nbsp;</div>
      <div>other content</div>
      <div>&nbsp;</div>
      <div>&nbsp;</div>

使用 php querypath 我想更改为:

      <div>I want remove empty div tag on top and bottom</div>
      <div>&nbsp;</div>
      <div>other content</div>

我能怎么做?

4

1 回答 1

0

使用替换字符串将 div 替换为空白。

str_replace(find,replace,from);

因此,您可以使用<div>&nbsp;</div>in find 并将其替换""为您的代码。

于 2012-11-17T14:29:08.927 回答