XML Parser

add a note add a note

User Contributed Notes 1 note

up
-22
marcgear at gmail dot com
13 years ago
While this SAX event based parser is better for memory management than the tree based parsers of SimpleXML and DOM, the pull-based parser XMLReader is much easier to use than the xml_parser_* functions, and still doesn't require loading the file into memory.
To Top