Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
483 views
in Technique[技术] by (71.8m points)

php - using preg_replace to remove html tag

Here is some part of html in my page.

<div id="video-ad">
          <div id="wpn_ad_square">

          </div>
        </div>

I want to remove the wpn_ad_square div completely with preg_replace statement.Take note that there may be other wpn_ad_square div on page and i want to remove all of them

Here are my attempts

$html = preg_replace('#<divsid="wpn_ad.*?</div>#s', '', $html, 1);

$html = preg_replace('#<div id="wpn_ad.*?</div>#s', '', $html, 1);

$html = preg_replace('#<div id="wpn_ad.*?</div>#s', '', $html, 1);

Sadly none of them are working for me....Kindly provide a preg_replace solution so that i can know what is wrong with mine.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It is very simple just the code you would like to remove with a non-greedy

$html = '
<div id="video-ad">
   <div id="wpn_ad_square">my example content</div>
</div>
';

echo preg_replace('/<div id="wpn_ad_square">(.*?)</div>/', '', $html);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...