PHP DOMDocument剥离HTML标记

时间:2008-09-17 17:16:45

标签: php

我正在研究一个小模板引擎,我正在使用DOMDocument来解析页面。到目前为止,我的测试页面如下所示:

<block name="content">

   <?php echo 'this is some rendered PHP! <br />' ?>

   <p>Main column of <span>content</span></p>

</block>

我班级的一部分看起来像这样:

private function parse($tag, $attr = 'name')
{
    $strict = 0;
    /*** the array to return ***/
    $out = array();
    if($this->totalBlocks() > 0)
    {
        /*** a new dom object ***/
        $dom = new domDocument;
        /*** discard white space ***/
        $dom->preserveWhiteSpace = false;

        /*** load the html into the object ***/
        if($strict==1)
        {
            $dom->loadXML($this->file_contents);
        }
        else
        {
            $dom->loadHTML($this->file_contents);
        }

        /*** the tag by its tag name ***/
        $content = $dom->getElementsByTagname($tag);

        $i = 0;
        foreach ($content as $item)
        {
            /*** add node value to the out array ***/
            $out[$i]['name'] = $item->getAttribute($attr);
            $out[$i]['value'] = $item->nodeValue;
            $i++;
        }
    }

    return $out;
}

我按照我想要的方式工作,因为它抓住了每个&lt; block&gt;在页面上并将其内容注入我的模板,然而,它正在剥离&lt; block&gt;中的HTML标记,因此返回以下内容而不使用&lt; p&gt;或者&lt; span&gt;标记:

this is some rendered PHP! Main column of content

我在这里做错了什么? :)谢谢

1 个答案:

答案 0 :(得分:9)

Nothing:nodeValue是树的值部分的串联,永远不会有标记。

我要做的是在$ node下创建树的HTML片段:


$doc = new DOMDocument();
foreach($node->childNodes as $child) {
    $doc->appendChild($doc->importNode($child, true));
}
return $doc->saveHTML();

HTML“片段”实际上比你最初想象的更有问题,因为它们往往缺乏像doctypes和字符集这样的东西,这使得很难确定性地在DOM树的部分和HTML片段之间来回传递