Parsing XML in PHP

PHP includes three XML parsers: one event-driven library based on the expat C library, one DOM-based library, and one for parsing simple XML documents named, appropriately, Simple XML The most commonly used parser is the event-based library, which lets you parse but not validate XML documents. This means you can find out which XML tags … Read more