SimpleXMLReader
SimpleXMLReader copied to clipboard
Wrapped XMLReader class, for simple SAX-reading of huge xml.
``` $reader->registerCallback("by-node-name", function($reader) { $element = $reader->expandSimpleXml(); $attributes = $element->attributes(); /* ... */ return true; }); ```
Hi, first of all, thanks a lot, this is incredibly fast... i've got simple and probably silly question, i can't figure out how to access an attribute with non default...
No issue here, just saying thank you. I was looking exactly for this, and I was about to write my own version, and I finally found this component, which works...
hi! I've got a strange issue with the parser. The same PHP function with the same XML file works fine in Windows, but throws an exception in CentOS. The exception...