We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
org.develnext:jphp-xml-ext
JPHP XML Library is an easy-to-use library for XML parsing and generation.
use php\xml\XmlProcessor; $processor = new XmlProcessor(); $document = $processor->parse('<product><name>Hello</name></product>'); $name = $document->get('/product/name'); // Use xpath expression.