Sign in
apache
/
zetacomponents
/
trunk
/
.
/
Tree
/
docs
/
tutorial_example_xhtml.php
blob: c7f46508ec22023fd72ca95a229ee5ce37d4a48e [
file
] [
log
] [
blame
]
<?
php
require_once
'tutorial_autoload.php'
;
$store
=
new
ezcTreeXmlInternalDataStore
();
$tree
=
new
ezcTreeXml
(
'files/example1.xml'
,
$store
);
$visitor
=
new
ezcTreeVisitorXHTML
();
$tree
->
accept
(
$visitor
);
echo
(
string
)
$visitor
;
?>