Purpose
Allows for the building of XML data structures using a tree representation, without the need for an extension like DOMXML.
Example
$tree = new XML_Tree; $root =& $tree->addRoot('root'); $foo =& $root->addChild('foo');
$tree->dump(true);