Read a XML stream from a local or distant file
doc = xmlRead(path [, encoding] [, validateDTD])
a string, the path to the file to read.
a string, the file encoding.
a boolean to indicate if the document must be validated.
a mlist typed XMLDoc
Read and parse a XML file. The returned document allows to access to the DOM tree which is kept in memory.
If validateDTD is set to true, the document will be validated or not during the parsing operation.
The encoding argument is used to precise the file encoding.
It is important to notice that the tree must be freed (to avoid memory leaks) with the function xmlDelete.
doc = xmlRead("http://www.w3.org/TR/2009/REC-xml-names-20091208/xml-names-10-3e.xml"); e = doc.root.children(1).children(1) e.name e.content xmlDump(e) // Now we can retrieve all the nodes with an 'href' attribute q = xmlXPath(doc, "//*[@href]"); q(1).attributes.href // We delete the doc xmlDelete(doc); | ![]() | ![]() |
Version | Description |
5.4.0 | XML module introduced. |
5.5.0 | Add new argument to select file encoding. |