php8.5
Home/ Manual/ tidy / tidy/ tidy::root

tidy::root

PHP function Edit on GitHub ✎

Returns a tidyNode object representing the root of the tidy parse tree

Description

Oop

tidy::root(): tidyNode|null

Procedural

tidy_get_root(tidy $tidy): tidyNode|null

Returns a tidyNode object representing the root of the tidy parse tree.

Parameters

tidy

Object

Return Values

Returns the tidyNode object.

Examples

tidy::root() example

php
<?php

$html = <<< HTML
<html><body>

<p>paragraph</p>
<br/>

</body></html>
HTML;

$tidy = tidy_parse_string($html);
dump_nodes($tidy->root(), 1);


function dump_nodes($node, $indent) {

    if($node->hasChildren()) {
        foreach($node->child as $child) {
            echo str_repeat('.', $indent*2) . ($child->name ? $child->name : '"'.$child->value.'"'). "\n";

            dump_nodes($child, $indent+1);
        }
    }
}
?>

The above example will output:

output
..html
....head
......title
....body
......p
........"paragraph"
......br

Source: reference/tidy/tidy/root.xml · from the official PHP manual (php/doc-en)