blvckgvd / xml_lib
PHP library to work with XML files without any problems
1.0.0
2023-06-02 14:48 UTC
Requires
- php: >=5.5
- ext-json: *
- ext-libxml: *
- ext-simplexml: *
This package is not auto-updated.
Last update: 2025-07-12 22:57:04 UTC
README
Light weight library to convert XML files to JSON or Array
Installation
Install currencylib with composer
composer require blvckgvd/xml_lib
Usage/Examples
Get JSON from XML
use Blvckgvd\XmlLib\XmlLib; public function getArrayFromXml() { $json = XmlLib::toJson('<path to xml>'); return $json; } // will return json
Get Array from XML
use Blvckgvd\XmlLib\XmlLib; public function getArrayFromXml() { $arr = XmlLib::toArray('<path to xml>'); return $arr; } // will return array