Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 76dd7c182855b73195d2f626c530f710 > files > 5

php-pear-XML_Tree-2.0.0-11mdv2010.0.noarch.rpm

<?php

require_once 'XML/Tree.php';

$tree = new XML_Tree;

$root =& $tree->addRoot('root');

//$tree->useCdataSections();

$root->addChild('foo','bar');

$baz =& $root->addChild('baz');

$baz->addChild('bat','qux', array(), null, true);
$baz->addChild('bat','quux', array(), null);
$baz->addChild(null, 'foo', array(), null, true);

$tree->dump();

?>