使用DOMDocument用div包装所有图像

时间:2011-12-08 05:04:41

标签: php domdocument

我有一个大的html文档,有几个图像。我想将所有图像包装在div.wrapped中。我如何使用DOMDocument

执行此操作

我见过appendChild方法,但最后只附加了元素。如何在中间插入一个,然后将图像移入其中?

1 个答案:

答案 0 :(得分:27)

之前我从未使用过DOMdocument,但我认为你的意思是这样的:

$html = <<<EOF
<html>
    <head>
        <title>:( -> :)</title>
    </head>
    <body>
        <img src="www.com" />
        <div class="random">
            <img src="www.ru" />
        </div>
    </body>
</html>
EOF;

$dom = new DOMDocument();
$dom->loadHTML($html);

//Create new wrapper div
$new_div = $dom->createElement('div');
$new_div->setAttribute('class','wrapper');

//Find all images
$images = $dom->getElementsByTagName('img');

//Iterate though images
foreach ($images AS $image) {
    //Clone our created div
    $new_div_clone = $new_div->cloneNode();
    //Replace image with this wrapper div
    $image->parentNode->replaceChild($new_div_clone,$image);
    //Append this image to wrapper div
    $new_div_clone->appendChild($image);
}