Skip to content

XML Extension

Dmitriy Zayceff edited this page Apr 17, 2015 · 4 revisions

API: http://jphp-docs.readthedocs.org/en/latest/api_en/php/xml/

JPHP XML Library is an easy-to-user library for XML parsing and generation.

Usage

use php\xml\XmlProcessor;

$processor = new XmlProcessor();
$document = $processor->parse('<product><name>Hello</name></product>');

$name = $document->get('/product/name'); // Use xpath expression.
Clone this wiki locally