Source of: /manual/en/book.xmlreader.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/refs.xml.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'book.xmlreader.php',
1 => 'XMLReader',
),
'up' =>
array (
0 => 'refs.xml.php',
1 => 'XML Manipulation',
),
'prev' =>
array (
0 => 'function.xml-set-unparsed-entity-decl-handler.php',
1 => 'xml_set_unparsed_entity_decl_handler',
),
'next' =>
array (
0 => 'intro.xmlreader.php',
1 => 'Introduction',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div>
<h1 class="title">XMLReader</h1>
<ul class="chunklist chunklist_book"><li><a href="intro.xmlreader.php">Introduction</a></li><li><a href="xmlreader.setup.php">Installing/Configuring</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="xmlreader.requirements.php">Requirements</a></li><li><a href="xmlreader.installation.php">Installation</a></li><li><a href="xmlreader.configuration.php">Runtime Configuration</a></li><li><a href="xmlreader.resources.php">Resource Types</a></li></ul></li><li><a href="class.xmlreader.php">XMLReader</a> — The XMLReader class<ul class="chunklist chunklist_book chunklist_children"><li><a href="xmlreader.close.php">XMLReader::close</a> — Close the XMLReader input</li><li><a href="xmlreader.expand.php">XMLReader::expand</a> — Returns a copy of the current node as a DOM object</li><li><a href="xmlreader.getattribute.php">XMLReader::getAttribute</a> — Get the value of a named attribute</li><li><a href="xmlreader.getattributeno.php">XMLReader::getAttributeNo</a> — Get the value of an attribute by index</li><li><a href="xmlreader.getattributens.php">XMLReader::getAttributeNs</a> — Get the value of an attribute by localname and URI</li><li><a href="xmlreader.getparserproperty.php">XMLReader::getParserProperty</a> — Indicates if specified property has been set</li><li><a href="xmlreader.isvalid.php">XMLReader::isValid</a> — Indicates if the parsed document is valid</li><li><a href="xmlreader.lookupnamespace.php">XMLReader::lookupNamespace</a> — Lookup namespace for a prefix</li><li><a href="xmlreader.movetoattribute.php">XMLReader::moveToAttribute</a> — Move cursor to a named attribute</li><li><a href="xmlreader.movetoattributeno.php">XMLReader::moveToAttributeNo</a> — Move cursor to an attribute by index</li><li><a href="xmlreader.movetoattributens.php">XMLReader::moveToAttributeNs</a> — Move cursor to a named attribute</li><li><a href="xmlreader.movetoelement.php">XMLReader::moveToElement</a> — Position cursor on the parent Element of current Attribute</li><li><a href="xmlreader.movetofirstattribute.php">XMLReader::moveToFirstAttribute</a> — Position cursor on the first Attribute</li><li><a href="xmlreader.movetonextattribute.php">XMLReader::moveToNextAttribute</a> — Position cursor on the next Attribute</li><li><a href="xmlreader.next.php">XMLReader::next</a> — Move cursor to next node skipping all subtrees</li><li><a href="xmlreader.open.php">XMLReader::open</a> — Set the URI containing the XML to parse</li><li><a href="xmlreader.read.php">XMLReader::read</a> — Move to next node in document</li><li><a href="xmlreader.readinnerxml.php">XMLReader::readInnerXML</a> — Retrieve XML from current node</li><li><a href="xmlreader.readouterxml.php">XMLReader::readOuterXML</a> — Retrieve XML from current node, including it self</li><li><a href="xmlreader.readstring.php">XMLReader::readString</a> — Reads the contents of the current node as an string</li><li><a href="xmlreader.setparserproperty.php">XMLReader::setParserProperty</a> — Set or Unset parser options</li><li><a href="xmlreader.setrelaxngschema.php">XMLReader::setRelaxNGSchema</a> — Set the filename or URI for a RelaxNG Schema</li><li><a href="xmlreader.setrelaxngschemasource.php">XMLReader::setRelaxNGSchemaSource</a> — Set the data containing a RelaxNG Schema</li><li><a href="xmlreader.setschema.php">XMLReader::setSchema</a> — Validate document against XSD</li><li><a href="xmlreader.xml.php">XMLReader::XML</a> — Set the data containing the XML to parse</li></ul></li></ul></div><?php manual_footer(); ?>