Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Parse XML file

<?php
$file = "data.xml";
$depth = array();

function startElement($parser, $name, $attrs) {
    global $debth;
    for ($i = 0; $i < $depth[$parser]; $i++) {
        echo "   ";
    }
    echo "\n";
    $depth[$parser]++;
}


$xml_parser = xml_parser_create();
xml_set_element_handler($xml_parser, "startElement");
 


?>