parent root
PHP: XML Parser - Manual
PHP 7.2.23 Release Announcement

XML Parser

add a noteadd a note

User Contributed Notes 1 note

up
-11
marcgear at gmail dot com
9 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
parent root