PhpDOMDocument recursive formatting indent HTML document

Source: Internet
Author: User
: This article mainly introduces phpDOMDocument recursive formatting of indent HTML documents. if you are interested in PHP tutorials, please refer to it. Php DOMDocument recursive formatting indent HTML document

Function format (\ DOMNode $ node, $ treeIndex = 0) {// unformatted label if (in_array ($ node-> nodeName, array ("title", "p ", "span") return; if ($ node-> hasChildNodes () {$ treeIndex ++; $ tabStart = "\ r \ n ". str_repeat ("", $ treeIndex); $ tabEnd = "\ r \ n ". str_repeat ("", $ treeIndex-1); $ I = 0; while ($ childNode = $ node-> childNodes-> item ($ I ++ )) {// Remove empty text nodeif ($ childNode-> nodeType = XML_TEXT_NODE and preg_match ('# ^ \ s * $ #', $ childNode-> nodeValue )) {$ node-> removeChild ($ childNode); $ I --; continue;} $ node-> insertBefore ($ node-> ownerDocument-> createTextNode ($ tabStart ), $ childNode); $ I ++; format ($ childNode, $ treeIndex );}; $ node-> appendChild ($ node-> ownerDocument-> createTextNode ($ tabEnd); }}$ html ='
 '; $ Doc = new \ DOMDocument (); // $ doc-> formatOutput = true; // I don't know if it is my understanding, this option is incorrectly formatted. $ doc-> loadHTML ($ html); format ($ doc-> documentElement); echo $ doc-> saveHTML ();

The above introduces the php DOMDocument recursive formatting indent HTML document, including the content, hope to be helpful to friends interested in PHP tutorials.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.