extphp/xml-to-json

An XML to JSON converter that will properly preserve attributes.

v0.2.0 2019-08-21 08:29 UTC

This package is auto-updated.

Last update: 2024-04-21 19:29:56 UTC


README

Build Status Latest Stable Version License Total Downloads

An XML to JSON converter that will properly preserve attributes.

Installation

composer require extphp/xml-to-json

Usage

A generic usage, usefull when the SimpleXMLElement instance already exists.

use ExtPHP\XmlToJson\XmlToJsonConverter;

$string = '<node attr1="value1" attr2="value2"><child>child value</child></node>';
$xml = simplexml_load_string($string);

$converter = new XmlToJsonConverter($xml);
$converter->toArray();      // convert xml to array
$converter->toJson();       // convert xml to json

A quick approach when you need to convert a XML string to array or json.

use ExtPHP\XmlToJson\JsonableXML;

$xml = new JsonableXML('<node attr1="value1" attr2="value2"><child>child value</child></node>');
json_encode($xml);      // convert xml to json

// These methods are also available directly on the xml object.
$xml->toArray();        // convert xml to array
$xml->toJson();         // convert xml to json