CodeIgniter Forums
XML Parser! - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22)
+--- Thread: XML Parser! (/showthread.php?tid=56916)



XML Parser! - El Forum - 01-30-2013

[eluser]NikosV[/eluser]
is there any decent xml parser library for codeigniter other than simpleXML (which is not dealing very well large xml files due to huge memory consumption)??


XML Parser! - El Forum - 07-18-2013

[eluser]quickshiftin[/eluser]
Not sure about CI-specific library, but if you want to cut down on memory usage for large XML files, take a look at the SAX parser

http://php.net/manual/en/book.xml.php

or XMLReader per the last comment on that page.