Light weight library to convert XML files to JSON or Array
Install currencylib with composer
composer require blvckgvd/xml_lib
use Blvckgvd\XmlLib\XmlLib;
public function getArrayFromXml() {
$json = XmlLib::toJson('<path to xml>');
return $json;
}
// will return json
use Blvckgvd\XmlLib\XmlLib;
public function getArrayFromXml() {
$arr = XmlLib::toArray('<path to xml>');
return $arr;
}
// will return array