Last updated
Was this helpful?
Last updated
Was this helpful?
(plugins.XmlReader)
XMLReader
is an XML parsing tool designed to process XML data. It provides two main methods for reading XML content, catering to both file-based and string-based sources. Both methods provide access to the hierarchical structure of the XML, including child nodes, attributes, and content, making them versatile for various XML processing needs.
,
Reads an XML document from a file.
Parameters
argument ;
Sample
Reads an XML document from a string.
Parameters
Sample
Returns: An array of XmlNode objects representing the parsed XML document read from the file.
argument ;
Returns: An array of XmlNode objects representing the parsed XML document read from the string.
Reads an XML document from a file.
Reads an XML document from a string.