extphp / xml-to-json
An XML to JSON converter that will properly preserve attributes.
Installs: 17 609
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires (Dev)
- phpunit/phpunit: >=5.0
This package is auto-updated.
Last update: 2024-10-21 20:36:29 UTC
README
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