blob: 03d5698da8f7e890ab27e71470c552a60ca68abd [file] [log] [blame]
<?php
require_once 'tutorial_autoload.php';
$store = new ezcTreeXmlInternalDataStore();
$tree = new ezcTreeXml( 'files/example1.xml', $store );
$f = $tree->fetchNodeById( 'F' );
echo $f->data, "<br/>\n"; // echos Fluorine
?>