sergeynezbritskiy / xml-io
Library for parsing and generating XML
Installs: 3 950
Dependents: 3
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 1
Open Issues: 2
Requires
- php: ^7.0|^8.0
- ext-dom: *
- ext-simplexml: *
Requires (Dev)
- phpunit/phpunit: ^6.5
README
Library for Parsing xml into php array using easy mapping. It allows you to parse simple data like strings and numbers, arrays or a list of items and complex data like objects. Also any combination of these data types is allowed.
Installation
The easiest way to install module is using Composer
composer require sergeynezbritskiy/xml-io:^5.0.0
Simple usage
The most useful test cases can be seen in tests
Here is the most generic example. Lets pretend we have such xml as below
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <user id="1"> <name>Sergey</name> <born format="ISO">1988-20-12</born> <passport id="MN123456"> <date>2000-12-12</date> </passport> <keywords> <keyword>buono</keyword> <keyword>brutto</keyword> <keyword>cattivo</keyword> </keywords> <addresses> <address> <city>Kharkiv</city> <country>Ukraine</country> </address> <address> <city>London</city> <country>Great Britain</country> </address> </addresses> </user>
Here is an example of how to convert such xml into array:
$xmlString = ' xml string from above '; $xmlReader = new \SergeyNezbritskiy\XmlIo\XmlReader(); $user = $xmlReader->stringToArray($xmlString, [ //array element with key `id` will be created from attribute `id` 'id' => '@id', //array element with key `name` will be created from tag `name` 'name' => 'name', 'born' => 'born', 'born_format' => 'born.@format', 'passport' => [ 'id' => '@id', 'date' => 'date', ], //create simple list of items 'keywords as keywords.keyword' => '{list}', //create element `addresses` which will be an array of associative arrays 'addresses as addresses.address[]' => [ 'city' => 'city', 'country' => 'country', ] ]); the result will be smth like that: $user = [ 'id' => '1', 'name' => 'Sergey', 'born' => '1988-20-12', 'born_format' => 'ISO', 'passport' => [ 'id' => 'MN123456', 'date' => '2000-12-12', ], 'keywords' => [ 'buono', 'brutto', 'cattivo' ], 'addresses' => [ [ 'city' => 'Kharkiv', 'country' => 'Ukraine' ],[ 'city' => 'London', 'country' => 'Great Britain' ], ] ]; and back, convert array to xml $xmlWriter = new \SergeyNezbritskiy\XmlIo\XmlWriter(); $xml = $xmlWriter->toXmlString($user, 'user' => [ 'attributes' => ['id'], 'children' => [ 'name', 'born', 'passport' => [ 'attributes' => ['id'], 'children' => 'date', ], 'keywords' => [ 'children' => [ 'keyword[]' => [ 'dataProvider' => 'keywords', 'text' => '{self}', ], ], ], 'addresses' => [ 'children' => [ 'address[]' => [ 'dataProvider' => 'addresses', 'children' => ['city', 'country'], ], ], ], ], ]);
Inspiration
Author was inspired for creating of this library by https://github.com/laravie/parser