简体   繁体   中英

Using PHP preg_replace to append text to pattern found with regex

I want to append a tag div before and after all tags img.

So I have

<img src=%random url image% />

And it should be replaced with

<div class="demo"><img src=%random url image% /></div>

Can I do it with preg_replace?

$string = %page source code%;
$find = array("/<img(.*?)\/>/");
$replace = array('<div class="demo">'.$find[0].'</div>');
$result = preg_replace($find, $replace, $string);

But it not work :/

A better way to parse HTML is using PHPs DOMDocument and DOMXPath classes. In your case, you can use XPath to find all the images, then add a div around them as shown in this example:

$html = '<div><img src="http://x.com" /><span>xyz</span><a href="http://example.com"><img src="http://example.com" /></a></div>';
$doc = new DOMDocument();
$doc->loadHTML($html, LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD);
$xpath = new DOMXpath($doc);
$images = $xpath->query('//img');
foreach ($images as $image) {
    $div = $doc->createElement('div');
    $div->setAttribute('class', 'demo');
    $image->parentNode->replaceChild($div, $image);
    $div->appendChild($image);
}
echo $doc->saveHTML();

Output:

<div>
    <div class="demo"><img src="http://x.com"></div>
    <span>xyz</span>
    <a href="http://example.com">
        <div class="demo"><img src="http://example.com"></div>
    </a>
</div>

Demo on 3v4l.org

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM