mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
12 lines
217 B
PHP
12 lines
217 B
PHP
<?php
|
|
require_once 'XML/Tree.php';
|
|
|
|
$xmlfile = 'presentations/slides/sdphp/data/sdphp_talk2.xml';
|
|
|
|
$tree = new XML_Tree($xmlfile);
|
|
$root = $tree->getTreeFromFile();
|
|
echo "<pre>\n";
|
|
print_r($root);
|
|
echo "</pre>\n";
|
|
?>
|