| 
 | tidy::roottidy_get_rootReturns a tidyNode object representing the root of the tidy parse tree DescriptionObject oriented style 
   tidyNode tidy::root
    ( void
   ) Procedural style 
   tidyNode tidy_get_root
    ( tidy  $object)Returns a tidyNode object representing the root of the tidy parse tree. Parameters
 
 Return ValuesReturns the tidyNode object. Examples
 Example #1 tidy::root example 
<?phpThe above example will output: ..html ....head ......title ....body ......p ........"paragraph" ......br Notes
 |