欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php DOMDocument 递归 格式化缩进HTML文档,_PHP教程

程序员文章站 2022-05-18 09:32:27
...

php DOMDocument 递归 格式化缩进HTML文档,

function format(\DOMNode $node, $treeIndex = 0)
{
    //不格式化的标签
    if (in_array($node->nodeName, array("title", "p", "span")))
        return;
    if ($node->hasChildNodes()) {
        $treeIndex++;
        $tabStart = "\r\n" . str_repeat("TTT", $treeIndex);
        $tabEnd = "\r\n" . str_repeat("EEE", $treeIndex - 1);
        $i = 0;
        while ($childNode = $node->childNodes->item($i++)) {
            if ($childNode->nodeType == XML_TEXT_NODE) {
                if (preg_match('#^\s*$#', $childNode->nodeValue)) {
                    $node->removeChild($childNode);
                    $i--;
                    continue;
                }
                $childNode->nodeValue = trim($childNode->nodeValue);
            }
            $node->insertBefore($node->ownerDocument->createTextNode($tabStart), $childNode);
            $i++;
            $this->format($childNode, $treeIndex);
        };
        $node->appendChild($node->ownerDocument->createTextNode($tabEnd));
    }
}

$html = '';
$doc = new \DOMDocument(); 
//$doc->formatOutput = true; //不知道是不是我的理解问题,这个选项格式化出来的并不完美
$doc->loadHTML($html); format($doc->documentElement);
echo $doc->saveHTML();

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1102843.htmlTechArticlephp DOMDocument 递归 格式化缩进HTML文档, function format(\DOMNode $node , $treeIndex = 0 ){ // 不格式化的标签 if ( in_array ( $node -nodeName, array ("title", "p"...